[linux-sunxi] [PATCH 09/10] ARM: dts: sun7i: Add device nodes for display pipelines

2017-10-17 Thread Chen-Yu Tsai
: Chen-Yu Tsai --- arch/arm/boot/dts/sun7i-a20.dtsi | 307 +++ 1 file changed, 307 insertions(+) diff --git a/arch/arm/boot/dts/sun7i-a20.dtsi b/arch/arm/boot/dts/sun7i-a20.dtsi index 2f63ae861e68..3843a635f7fa 100644 --- a/arch/arm/boot/dts/sun7i-a20.dtsi +++ b

[linux-sunxi] [PATCH 04/10] drm/sun4i: Add support for A10 display pipeline components

2017-10-17 Thread Chen-Yu Tsai
YPbPr/VGA signals via on-chip TV encoders. These additional encoders are not covered in this patch. Signed-off-by: Chen-Yu Tsai --- Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | 3 +++ drivers/gpu/drm/sun4i/sun4i_backend.c | 8 drivers/gpu/drm/

[linux-sunxi] [PATCH 08/10] ARM: dts: sun4i: Enable HDMI support on some A10 devices

2017-10-17 Thread Chen-Yu Tsai
Various A10-based development boards have standard HDMI connectors wired to the dedicated HDMI pins on the SoC. Enable the display pipeline and HDMI output on boards I have or have access to schematics: - Cubieboard - Olimex A10-OLinuXino-LIME Signed-off-by: Chen-Yu Tsai --- Can someone

[linux-sunxi] [PATCH 01/10] drm/sun4i: backend: Support output muxing

2017-10-17 Thread Chen-Yu Tsai
supported by DRM. Here we simply pair up backends and TCONs with the same ID. Signed-off-by: Chen-Yu Tsai --- drivers/gpu/drm/sun4i/sun4i_backend.c | 52 +-- drivers/gpu/drm/sun4i/sun4i_backend.h | 3 +- 2 files changed, 51 insertions(+), 4 deletions(-) diff

[linux-sunxi] [PATCH 02/10] drm/sun4i: tcon: Add support for A10 TCON

2017-10-17 Thread Chen-Yu Tsai
up commit message] Signed-off-by: Chen-Yu Tsai --- .../bindings/display/sunxi/sun4i-drm.txt | 1 + drivers/gpu/drm/sun4i/sun4i_drv.c | 3 ++- drivers/gpu/drm/sun4i/sun4i_tcon.c | 30 ++ 3 files changed, 33 insertions(+), 1 deletion

[linux-sunxi] [PATCH 00/10] drm/sunxi: Display pipeline and HDMI output on A10/A20

2017-10-17 Thread Chen-Yu Tsai
patch adds support for the backend output mux - 3 patches add A10/A20 compatible strings to the sun4i-drm driver - 2 patches add the display pipeline nodes to the .dtsi files - 2 patches enable HDMI output on various boards Chen-Yu Tsai (6): drm/sun4i: backend: Support output muxing

[linux-sunxi] [PATCH 03/10] drm/sun4i: hdmi: Support HDMI controller on A10

2017-10-17 Thread Chen-Yu Tsai
The HDMI controller in the A10 SoC is the same as the one currently supported in the A10s. It has slightly different setup parameters. Since these parameters are not thoroughly understood, we add support for this variant by copying these parameters verbatim. Signed-off-by: Chen-Yu Tsai

[linux-sunxi] [PATCH 05/10] drm/sun4i: Add support for A20 display pipeline components

2017-10-17 Thread Chen-Yu Tsai
HDMI controller, or CVBS/YPbPr/VGA signals via on-chip TV encoders. These additional encoders are not covered in this patch. Signed-off-by: Jonathan Liu [w...@csie.org: Expand commit message] Signed-off-by: Chen-Yu Tsai --- Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt | 4 dr

[linux-sunxi] [PATCH 06/10] clk: sunxi-ng: sun4i: Export video PLLs

2017-10-17 Thread Chen-Yu Tsai
From: Jonathan Liu The video PLLs are used directly by the HDMI controller. Export them so that we can use them in our DT node. Signed-off-by: Jonathan Liu Signed-off-by: Chen-Yu Tsai --- drivers/clk/sunxi-ng/ccu-sun4i-a10.h | 4 ++-- include/dt-bindings/clock/sun4i-a10-ccu.h | 2 ++ 2

Re: [linux-sunxi] [PATCH 08/10] ARM: dts: sun4i: Enable HDMI support on some A10 devices

2017-10-17 Thread Chen-Yu Tsai
On Tue, Oct 17, 2017 at 8:18 PM, Chen-Yu Tsai wrote: > Various A10-based development boards have standard HDMI connectors > wired to the dedicated HDMI pins on the SoC. > > Enable the display pipeline and HDMI output on boards I have or have > access to schematics: > > - Cu

Re: [linux-sunxi] [PATCH 08/10] ARM: dts: sun4i: Enable HDMI support on some A10 devices

2017-10-17 Thread Chen-Yu Tsai
On Wed, Oct 18, 2017 at 2:10 AM, Maxime Ripard wrote: > On Tue, Oct 17, 2017 at 10:38:45PM +0800, Chen-Yu Tsai wrote: >> > diff --git a/arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dts >> > b/arch/arm/boot/dts/sun4i-a10-olinuxino-lime.dts >> > index 2d1b4329f54a..

[linux-sunxi] [PATCH v2 0/8] ARM: sun8i: a83t: Enable AXP813/AXP818 regulators

2017-10-18 Thread Chen-Yu Tsai
of product or market segmentation. Chen-Yu Tsai (8): mfd: axp20x: Add axp20x-regulator cell for AXP813 ARM: dts: sunxi: Add dtsi for AXP81x PMIC ARM: dts: sun8i: a83t: cubietruck-plus: Add AXP818 regulator nodes ARM: dts: sun8i: a83t: bananapi-m3: Add AXP813 regulator nodes ARM: dts: sun8i: a83

[linux-sunxi] [PATCH v2 1/8] mfd: axp20x: Add axp20x-regulator cell for AXP813

2017-10-18 Thread Chen-Yu Tsai
Now that axp20x-regulator supports AXP813, we can add a cell for it to enable it. Signed-off-by: Chen-Yu Tsai Tested-by: Maxime Ripard Acked-by: Maxime Ripard Acked-for-MFD-by: Lee Jones --- drivers/mfd/axp20x.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mfd/axp20x.c b

[linux-sunxi] [PATCH v2 3/8] ARM: dts: sun8i: a83t: cubietruck-plus: Add AXP818 regulator nodes

2017-10-18 Thread Chen-Yu Tsai
This patch adds device nodes for all the regulators of the AXP818 PMIC. Sunxi common regulators are removed, and USB VBUS regulators are added. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a83t-cubietruck-plus.dts | 167 +-- 1 file changed, 155 insertions(+), 12

[linux-sunxi] [PATCH v2 6/8] ARM: dts: sun8i: a83t: Move mmc1 pinctrl setting to dtsi file

2017-10-18 Thread Chen-Yu Tsai
mmc1 only has 1 possible pinmux setting. Move any settings to the dtsi file and set it by default. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts | 2 -- arch/arm/boot/dts/sun8i-a83t.dtsi | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a

[linux-sunxi] [PATCH v2 7/8] ARM: dts: sun8i: a83t: cubietruck-plus: Enable AP6330 WiFi on mmc1

2017-10-18 Thread Chen-Yu Tsai
Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a83t-cubietruck-plus.dts | 20 1 file changed, 20 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-a83t-cubietruck-plus.dts b/arch/arm/boot/dts/sun8i-a83t-cubietruck-plus.dts index bd53e5748991..7f0a3f6d0cf2 100644 --- a/arch/arm/boo

[linux-sunxi] [PATCH v2 4/8] ARM: dts: sun8i: a83t: bananapi-m3: Add AXP813 regulator nodes

2017-10-18 Thread Chen-Yu Tsai
This patch adds device nodes for all the regulators of the AXP813 PMIC. Sunxi common regulators are removed, and USB VBUS regulators are added. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts | 141 +-- 1 file changed, 132 insertions(+), 9

[linux-sunxi] [PATCH v2 2/8] ARM: dts: sunxi: Add dtsi for AXP81x PMIC

2017-10-18 Thread Chen-Yu Tsai
for these two PMICs. Currently this is just listing all the regulator nodes. The regulators are initialized based on their device node names. In the future this would be expanded to include power supplies and GPIO controllers. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/axp81x.dtsi | 139

[linux-sunxi] [PATCH v2 8/8] ARM: dts: sun8i: a83t: bananapi-m3: Enable AP6212 WiFi on mmc1

2017-10-18 Thread Chen-Yu Tsai
rrupt line. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts | 28 1 file changed, 28 insertions(+) diff --git a/arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts b/arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts index 78036b2f2ab4..c606af3dbfed 1

[linux-sunxi] [PATCH v2 5/8] ARM: dts: sun8i: a83t: allwinner-h8homlet-v2: Add AXP818 regulator nodes

2017-10-18 Thread Chen-Yu Tsai
This patch adds device nodes for all the regulators of the AXP818 PMIC. Sunxi common regulators are removed, and USB VBUS regulators are added. Signed-off-by: Chen-Yu Tsai --- .../boot/dts/sun8i-a83t-allwinner-h8homlet-v2.dts | 147 +++-- 1 file changed, 134 insertions(+), 13

Re: [linux-sunxi] [PATCH v2 6/8] ARM: dts: sun8i: a83t: Move mmc1 pinctrl setting to dtsi file

2017-10-18 Thread Chen-Yu Tsai
On Wed, Oct 18, 2017 at 11:00 PM, Joonas Kylmälä wrote: > Hi, > > Chen-Yu Tsai: >> mmc1 only has 1 possible pinmux setting. > > What if someone is using the MMC with bus width 1 and then using the > remaining 3 pins for something else? I would very much like to see such

Re: [linux-sunxi] [PATCH v2 5/5] ARM: sun8i: v40: enable USB host ports for Banana Pi M2 Berry

2017-10-19 Thread Chen-Yu Tsai
Hi, On Wed, Oct 18, 2017 at 9:06 PM, Icenowy Zheng wrote: > Banana Pi M2 Berry has an on-board USB Hub that provides 4 USB Type-A > ports, and it's connected to the USB1 port of the SoC. > > Enable it. What is the USB hub chip's model? If it's a USB 2.0 hub, then you don't need to enable the OHC

Re: [linux-sunxi] [PATCH v2 0/5] Allwinner R40 USB host support (DT part)

2017-10-19 Thread Chen-Yu Tsai
lator for Banana Pi M2 Berry > ARM: sun8i: r40: enable USB host for Banana Pi M2 Ultra For the four patches, Acked-by: Chen-Yu Tsai > ARM: sun8i: v40: enable USB host ports for Banana Pi M2 Berry See my comments on OHCI and USB hub for the last patch. ChenYu > > arch/a

Re: [linux-sunxi] [PATCH v2 6/8] ARM: dts: sun8i: a83t: Move mmc1 pinctrl setting to dtsi file

2017-10-19 Thread Chen-Yu Tsai
On Thu, Oct 19, 2017 at 4:18 PM, wrote: > 在 2017-10-19 14:48,Chen-Yu Tsai 写道: >> >> On Wed, Oct 18, 2017 at 11:00 PM, Joonas Kylmälä >> wrote: >>> >>> Hi, >>> >>> Chen-Yu Tsai: >>>> >>>> mmc1 only has 1 possible

Re: [linux-sunxi] [PATCH v2 6/8] ARM: dts: sun8i: a83t: Move mmc1 pinctrl setting to dtsi file

2017-10-19 Thread Chen-Yu Tsai
On Fri, Oct 20, 2017 at 12:02 AM, Joonas Kylmälä wrote: > Chen-Yu Tsai: >>> Chen-Yu Tsai: >>>> mmc1 only has 1 possible pinmux setting. >>> >>> What if someone is using the MMC with bus width 1 and then using the >>> remaining 3 pins for somethi

[linux-sunxi] Re: [PATCH v2 1/8] mfd: axp20x: Add axp20x-regulator cell for AXP813

2017-10-31 Thread Chen-Yu Tsai
On Tue, Oct 31, 2017 at 11:07 PM, Lee Jones wrote: > On Tue, 31 Oct 2017, Maxime Ripard wrote: >> On Wed, Oct 18, 2017 at 04:31:31PM +0800, Chen-Yu Tsai wrote: >> > Now that axp20x-regulator supports AXP813, we can add a cell for it >> > to enable it. >> &

Re: [linux-sunxi] Re: [U-Boot] [PATCH] sunxi: add support for Banana Pi M2 Zero board

2017-11-01 Thread Chen-Yu Tsai
On Wed, Nov 1, 2017 at 9:37 PM, Jagan Teki wrote: > On Wed, Nov 1, 2017 at 6:58 PM, Icenowy Zheng wrote: >> 在 2017-11-01 21:21,Jagan Teki 写道: >>> >>> On Wed, Nov 1, 2017 at 6:22 PM, Icenowy Zheng wrote: Banana Pi M2 Zero is a board by Sinovoip with Allwinner H2+ SoC, 16-bit 512MiB

[linux-sunxi] Re: [PATCH v2 0/2] Add dwmac-sun8i on A83T DT

2017-11-09 Thread Chen-Yu Tsai
On Thu, Nov 9, 2017 at 4:29 PM, Corentin Labbe wrote: > Hello > > This patch series add some device node for dwmac-sun8i on A83T. > > Changes since v1: > - reworked commit log of patch #1 > - added comment on drive strength > > Corentin Labbe (2): > ARM: sun8i: a83t: add dwmac-sun8i device node

[linux-sunxi] Re: [PATCH v2 2/2] ARM: sun8i: bananapi-m3: Enable dwmac-sun8i

2017-11-09 Thread Chen-Yu Tsai
On Thu, Nov 9, 2017 at 4:29 PM, Corentin Labbe wrote: > The dwmac-sun8i hardware is present on the bananapi m3 > It uses an external PHY rtl8211e via RGMII. > > This patch create the needed emac and phy nodes. > > Signed-off-by: Corentin Labbe > --- > arch/arm/boot/dts/sun8i-a83t-bananapi-m3.dts

[linux-sunxi] Re: [PATCH 02/10] drm/sun4i: tcon: Add support for A10 TCON

2017-11-14 Thread Chen-Yu Tsai
On Wed, Oct 25, 2017 at 12:01 AM, Rob Herring wrote: > On Tue, Oct 17, 2017 at 08:17:59PM +0800, Chen-Yu Tsai wrote: >> From: Jonathan Liu >> >> The A10 has two TCONs that are similar to the ones found on other SoCs. >> Like the A31, TCON0 has a register used to

[linux-sunxi] [PATCH v2 3/9] mfd: axp20x: Add support for RSB based AXP223 PMIC

2015-11-12 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 11 ++ drivers/mfd/Makefile

[linux-sunxi] [PATCH v2 6/9] ARM: dts: sun8i: Add simplefb node labels to reference at board level

2015-11-12 Thread Chen-Yu Tsai
Some boards, such as tablets, have regulators providing power to parts of the display pipeline, like signal converters and LCD panels. Add labels to the simplefb device nodes so that we can reference them in the board dts files to add regulator supply properties. Signed-off-by: Chen-Yu Tsai

[linux-sunxi] [PATCH v2 4/9] regulator: axp20x: Support new AXP223 PMIC

2015-11-12 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Reviewed-by: Mark Brown --- drivers/regulator/axp20x-regulator.c

[linux-sunxi] [PATCH v2 1/9] mfd: axp20x: Add AXP223 to list of supported PMICs in DT bindings

2015-11-12 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard --- Documentation/devicetree/bindings/mfd

[linux-sunxi] [PATCH v2 9/9] ARM: multi_v7_defconfig: Build AXP20X related drivers as modules

2015-11-12 Thread Chen-Yu Tsai
patches are being merged. This should be removed in the next release. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/multi_v7_defconfig | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index

[linux-sunxi] [PATCH v2 9/9] ARM: multi_v7_defconfig: Enable RSB and AXP20X related drivers as modules

2015-11-12 Thread Chen-Yu Tsai
while the patches are being merged. This should be removed in the next release. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/multi_v7_defconfig | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig

[linux-sunxi] [PATCH v2 7/9] ARM: dts: sun8i: q8-common: Add device node for AXP223 PMIC

2015-11-12 Thread Chen-Yu Tsai
A23/A33 Q8 tablets have an X-Powers AXP223 PMIC connected via RSB. It's regulators provide power to various parts of the SoC and the board. Also add simplefb regulator supplies and update existing ones. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-q8-common.dtsi

[linux-sunxi] [PATCH v2 8/9] ARM: sunxi_defconfig: Update MFD_AXP20X symbol and enable MFD_AXP20X_RSB

2015-11-12 Thread Chen-Yu Tsai
should be removed in the next release. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/sunxi_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig index 3c36e16fcacf..18dbfaddb727 100644 --- a/arch/arm/configs

[linux-sunxi] [PATCH v2 2/9] mfd: axp20x: Split the driver into core and i2c bits

2015-11-12 Thread Chen-Yu Tsai
cific glue layer. MFD_AXP20X and the new MFD_AXP20X_I2C are changed to tristate symbols, allowing the driver to be built as modules. Included but unused header files are removed as well. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 14 +++-- drivers/mfd/Makefile | 1 + d

[linux-sunxi] [PATCH v2 7/9] ARM: dts: sun8i: q8-common: Add AXP223 PMIC device and regulator nodes

2015-11-12 Thread Chen-Yu Tsai
A23/A33 Q8 tablets have an X-Powers AXP223 PMIC connected via RSB. It's regulators provide power to various parts of the SoC and the board. Also add lcd regulator supply for simplefb and update the existing vmmc-supply for mmc0. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun

[linux-sunxi] [PATCH v2 0/9] mfd: axp20x: Add support for RSB based AXP223

2015-11-12 Thread Chen-Yu Tsai
3 PMIC and its regulators for A23/A33 based Q8 devices. Patch 8 enables MFD_AXP20X_I2C and MFD_AXP20X_RSB in sunxi_defconfig Patch 9 enables SUNXI_RSB, MFD_AXP20X_RSB and MFD_AXP20X_RSB in multi_v7_defconfig, and changes all existing AXP20X related symbols to M (module). Regards ChenYu Chen-Yu T

[linux-sunxi] [PATCH v2 5/9] ARM: dts: sun8i: sinlinx-sina33: Add AXP223 PMIC device and regulator nodes

2015-11-12 Thread Chen-Yu Tsai
This board has a X-Powers AXP223 PMIC connected via RSB. It's regulators provide power to various parts of the SoC and the board. Also update the regulator supply phandles. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 79 +- 1

[linux-sunxi] Re: [PATCH v2 9/9] ARM: multi_v7_defconfig: Build AXP20X related drivers as modules

2015-11-12 Thread Chen-Yu Tsai
On Fri, Nov 13, 2015 at 12:04 PM, Chen-Yu Tsai wrote: > axp20x support has been split into 2 parts, I2C and RSB interface > variants. > > Update the MFD_AXP20X symbol for I2C support, and also enable > MFD_AXP20X_RSB to support RSB variants. Build these drivers as > modules. &

Re: [linux-sunxi] [PATCH v2 7/9] ARM: dts: sun8i: q8-common: Add device node for AXP223 PMIC

2015-11-12 Thread Chen-Yu Tsai
On Fri, Nov 13, 2015 at 12:04 PM, Chen-Yu Tsai wrote: > A23/A33 Q8 tablets have an X-Powers AXP223 PMIC connected via RSB. It's > regulators provide power to various parts of the SoC and the board. > > Also add simplefb regulator supplies and update existing ones. > > Sign

[linux-sunxi] Re: [PATCH 05/19] clk: sunxi: add DRAM gates

2015-11-13 Thread Chen-Yu Tsai
On Mon, Nov 9, 2015 at 12:18 PM, Chen-Yu Tsai wrote: > On Fri, Oct 30, 2015 at 10:20 PM, Maxime Ripard > wrote: >> The Allwinner SoCs have a gate controller to gate the access to the DRAM >> clock to the some devices that need to access the DRAM directly (mostly >> dis

Re: [linux-sunxi] Re: [PATCH sunxi-tools 2/2] fel: Enable MMU on Allwinner-H3

2015-11-15 Thread Chen-Yu Tsai
Hi, On Mon, Nov 16, 2015 at 4:50 AM, Siarhei Siamashka wrote: > On Sat, 14 Nov 2015 04:36:16 +0800 > Vishnu Patekar wrote: > >> Hello, >> >> On Fri, Nov 13, 2015 at 7:52 PM, Siarhei Siamashka < >> siarhei.siamas...@gmail.com> wrote: >> >> > On Fri, 13 Nov 2015 11:06:01 +0200 >> > Siarhei Siamash

Re: [linux-sunxi] [PATCH 3/5] ARM: dts: sun8i: Add support for H3 usb clocks

2015-11-15 Thread Chen-Yu Tsai
On Mon, Nov 16, 2015 at 3:46 AM, Hans de Goede wrote: > From: Reinder de Haan > > Add a node describing the usb-clks found on the H3. > > Signed-off-by: Reinder de Haan > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai (Also updated Mike's email in my reply.) >

Re: [linux-sunxi] [PATCH 1/5] clk: sunxi: Add support for the H3 usb phy clocks

2015-11-15 Thread Chen-Yu Tsai
be done with it. > > Signed-off-by: Reinder de Haan > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai > --- > Documentation/devicetree/bindings/clock/sunxi.txt | 1 + > drivers/clk/sunxi/clk-usb.c | 12 > 2 files changed, 13 insertio

Re: [linux-sunxi] [PATCH 5/5] ARM: dts: sun8i-h3-orangepi-plus: Enable USB host controllers

2015-11-15 Thread Chen-Yu Tsai
Hi, On Mon, Nov 16, 2015 at 3:46 AM, Hans de Goede wrote: > From: Reinder de Haan > > Enable the 3 pairs of USB host controllers used on the Orange Pi Plus. > > Signed-off-by: Reinder de Haan > Signed-off-by: Hans de Goede > --- > arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts | 28 > +

[linux-sunxi] Fwd: PSCI for H3

2015-11-15 Thread Chen-Yu Tsai
Hi everyone, (Resent with my correct email address...) I got my Orange Pi PC booting U-boot now, using Hans' sunxi-wip branch that includes Jens' patches. For PSCI and SMP, it seems the H3 follows the structure of previous sun8i SoCs. The CPUCFG registers line up. The manual doesn't have the PRC

Re: [linux-sunxi] Re: [PATCH 2/2] ehci-platform: Add support for controllers with multiple reset lines

2015-11-16 Thread Chen-Yu Tsai
On Mon, Nov 16, 2015 at 11:42 PM, Alan Stern wrote: > On Sun, 15 Nov 2015, Hans de Goede wrote: > >> From: Reinder de Haan >> >> At least the EHCI found on the Allwinnner H3 SoC needs multiple reset >> lines, the controller will not initialize while the reset for its >> companion OHCI is still as

[linux-sunxi] [PATCH v3 1/9] mfd: axp20x: Add AXP223 to list of supported PMICs in DT bindings

2015-11-16 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard Acked-by: Rob Herring --- Documentation

[linux-sunxi] [PATCH v3 4/9] regulator: axp20x: Support new AXP223 PMIC

2015-11-16 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Reviewed-by: Mark Brown --- drivers/regulator/axp20x-regulator.c

[linux-sunxi] [PATCH v3 8/9] ARM: sunxi_defconfig: Update MFD_AXP20X symbol and enable MFD_AXP20X_RSB

2015-11-16 Thread Chen-Yu Tsai
should be removed in the next release. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/sunxi_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig index 3c36e16fcacf..18dbfaddb727 100644 --- a/arch/arm/configs

[linux-sunxi] [PATCH v3 7/9] ARM: dts: sun8i: q8-common: Add AXP223 PMIC device and regulator nodes

2015-11-16 Thread Chen-Yu Tsai
A23/A33 Q8 tablets have an X-Powers AXP223 PMIC connected via RSB. Its regulators provide power to various parts of the SoC and the board. Also add lcd regulator supply for simplefb and update the existing vmmc-supply for mmc0. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-q8

[linux-sunxi] [PATCH v3 3/9] mfd: axp20x: Add support for RSB based AXP223 PMIC

2015-11-16 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 11 ++ drivers/mfd/Makefile

[linux-sunxi] [PATCH v3 5/9] ARM: dts: sun8i: sinlinx-sina33: Add AXP223 PMIC device and regulator nodes

2015-11-16 Thread Chen-Yu Tsai
This board has a X-Powers AXP223 PMIC connected via RSB. Its regulators provide power to various parts of the SoC and the board. Also update the regulator supply phandles. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 79 +- 1 file

[linux-sunxi] [PATCH v3 9/9] ARM: multi_v7_defconfig: Enable RSB and AXP20X related drivers as modules

2015-11-16 Thread Chen-Yu Tsai
while the patches are being merged. This should be removed in the next release. Signed-off-by: Chen-Yu Tsai --- arch/arm/configs/multi_v7_defconfig | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig

[linux-sunxi] [PATCH v3 2/9] mfd: axp20x: Split the driver into core and i2c bits

2015-11-16 Thread Chen-Yu Tsai
cific glue layer. MFD_AXP20X and the new MFD_AXP20X_I2C are changed to tristate symbols, allowing the driver to be built as modules. Included but unused header files are removed as well. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 14 +++-- drivers/mfd/Makefile | 1 + d

[linux-sunxi] [PATCH v3 6/9] ARM: dts: sun8i: Add simplefb node labels to reference at board level

2015-11-16 Thread Chen-Yu Tsai
Some boards, such as tablets, have regulators providing power to parts of the display pipeline, like signal converters and LCD panels. Add labels to the simplefb device nodes so that we can reference them in the board dts files to add regulator supply properties. Signed-off-by: Chen-Yu Tsai

[linux-sunxi] [PATCH v3 0/9] mfd: axp20x: Add support for RSB based AXP223

2015-11-16 Thread Chen-Yu Tsai
SB and MFD_AXP20X_RSB in multi_v7_defconfig, and changes all existing AXP20X related symbols to M (module). Regards ChenYu Chen-Yu Tsai (9): mfd: axp20x: Add AXP223 to list of supported PMICs in DT bindings mfd: axp20x: Split the driver into core and i2c bits mfd: axp20x: Add support for RSB based

[linux-sunxi] [PATCH v5 2/2] simplefb: Claim and enable regulators

2015-11-16 Thread Chen-Yu Tsai
This claims and enables regulators listed in the simple framebuffer dt node. This is needed so that regulators powering the display pipeline and external hardware, described in the device node and known by the kernel code, will remain properly enabled. Signed-off-by: Chen-Yu Tsai Acked-by: Mark

[linux-sunxi] [PATCH v5 0/2] simplefb: Add regulator handling support

2015-11-16 Thread Chen-Yu Tsai
gulators. Regards ChenYu Chen-Yu Tsai (2): dt-bindings: simplefb: Support regulator supply properties simplefb: Claim and enable regulators .../bindings/display/simple-framebuffer.txt| 13 ++- drivers/video/fbdev/simplefb.c | 120 - 2 files chan

[linux-sunxi] [PATCH v5 1/2] dt-bindings: simplefb: Support regulator supply properties

2015-11-16 Thread Chen-Yu Tsai
under the device node. These should be properly named to match the device schematics / design. The driver should take care to go through them all. Signed-off-by: Chen-Yu Tsai Reviewed-by: Hans de Goede Acked-by: Mark Brown --- .../devicetree/bindings/display/simple-framebuffer.txt | 13

[linux-sunxi] [PATCH] ARM: dts: sun8i: Add Orange Pi PC support

2015-11-17 Thread Chen-Yu Tsai
3 pin UART header, and a 40-pin GPIO header. Signed-off-by: Chen-Yu Tsai --- This is based on Jens' H3 patches and Hans' H3 USB patches. USB works nicely on this board. --- arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/sun8i-h3-orange

[linux-sunxi] Re: [PATCH] thermal: Add support for Sunxi THS on the Allwinner H3

2015-11-18 Thread Chen-Yu Tsai
On Thu, Nov 19, 2015 at 4:51 AM, Josef Gajdusek wrote: > This patch adds support for the Sunxi thermal sensor on the Allwinner H3. > Also adds declaration of the H3 THS clock to clk-sunxi.c ignoring the > dividers as they are not continuous (clk-divider.c cannot be used as it > does not support se

[linux-sunxi] Re: [PATCH v2 2/3] ARM: sunxi: Really enable LRADC keys in sunxi_defconfig

2015-11-19 Thread Chen-Yu Tsai
led in sunxi_defconfig. Hence, the LRADC keys were > never actually enabled. Remove the line disabling CONFIG_KEYBOARD in > order to really enable KEYBOARD_SUN4I_LRADC. > > Signed-off-by: Timo Sigurdsson Acked-by: Chen-Yu Tsai -- You received this message because you are subscribed

[linux-sunxi] Re: [PATCH v2 1/3] ARM: sunxi: Re-enable SID driver in sunxi_defconfig

2015-11-19 Thread Chen-Yu Tsai
tead of the new symbol NVMEM_SUNXI_SID. Hence, re-enable the driver > in sunxi_defconfig. > > Signed-off-by: Timo Sigurdsson Acked-by: Chen-Yu Tsai -- You received this message because you are subscribed to the Google Groups "linux-sunxi" group. To unsubscribe from this grou

Re: [linux-sunxi] Re: [PATCH v3 3/3] ARM: dts: sun4i: gemei-g9: Enable sun4i audio codec support

2015-11-19 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 12:09 AM, Maxime Ripard wrote: > Hi, > > On Thu, Nov 12, 2015 at 08:53:19PM +0200, Priit Laes wrote: >> On Mon, 2015-11-09 at 11:59 +0800, Chen-Yu Tsai wrote: >> > On Sat, Nov 7, 2015 at 1:54 AM, Priit Laes wrote: >> > > Gemei G9 has

[linux-sunxi] Re: [PATCH 3/4] ARM: dts: sun4i: Add backlight node to pov protab2 ips9 tablet

2015-11-20 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 9:59 PM, Hans de Goede wrote: > Add a node describing the lcd panel backlight on the pov protab2 ips9 > tablet. > > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai -- You received this message because you are subscribed to the Google Groups "l

[linux-sunxi] Re: [PATCH 4/4] ARM: dts: sun5i: Add i2c axp152 pmic support for Auxtek T004 boards

2015-11-20 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 9:59 PM, Hans de Goede wrote: > From: Michael van Slingerland > > Add a node describing the AXP152 pmic used on Auxtek T004 boards. > > Signed-off-by: Michael van Slingerland > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai -- You received th

[linux-sunxi] Re: [PATCH 2/4] ARM: dts: sun5i: Add backlight node to UTOO P66 tablet

2015-11-20 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 9:59 PM, Hans de Goede wrote: > Add a node describing the lcd panel backlight on the UTOO P66 tablet. > > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai -- You received this message because you are subscribed to the Google Groups "linux-su

Re: [linux-sunxi] [PATCH 1/4] ARM: dts: sun4i: Add backlight node to iNet1 tablet

2015-11-20 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 9:59 PM, Hans de Goede wrote: > Add a node describing the lcd panel backlight on the iNet1 tablet. > > Signed-off-by: Hans de Goede Acked-by: Chen-Yu Tsai -- You received this message because you are subscribed to the Google Groups "linux-sunxi" gr

[linux-sunxi] Re: [PATCH 1/4] ASoC: sun4i-codec: Add support for PA gpio pin

2015-11-20 Thread Chen-Yu Tsai
On Sat, Nov 21, 2015 at 12:30 AM, Maxime Ripard wrote: > On Fri, Nov 20, 2015 at 02:47:10PM +0100, Hans de Goede wrote: >> Add support for PA gpio pin for controlling an external amplifier as used >> on some Allwinner boards. >> >> Signed-off-by: Hans de Goede >> --- >> .../devicetree/bindings/s

[linux-sunxi] Re: [PATCH v3 5/9] ARM: dts: sun8i: sinlinx-sina33: Add AXP223 PMIC device and regulator nodes

2015-11-20 Thread Chen-Yu Tsai
On Fri, Nov 20, 2015 at 7:12 PM, Maxime Ripard wrote: > Hi, > > On Tue, Nov 17, 2015 at 12:38:24AM +0800, Chen-Yu Tsai wrote: >> This board has a X-Powers AXP223 PMIC connected via RSB. Its regulators >> provide power to various parts of the SoC and the board. >> &

Re: [linux-sunxi] Re: [PATCH v4 4/6] reset: sunxi: Add Allwinner H3 bus resets

2015-11-22 Thread Chen-Yu Tsai
On Thu, Nov 5, 2015 at 2:47 PM, Jean-Francois Moine wrote: > On Wed, 4 Nov 2015 08:30:14 -0800 > Maxime Ripard wrote: > >> Hi Arnd, >> >> On Fri, Oct 30, 2015 at 09:27:03AM +0100, Arnd Bergmann wrote: >> > On Tuesday 27 October 2015 17:50:24 Jens Kuske wrote: >> > > >> > > +static int sun8i_h3_bu

[linux-sunxi] Re: [PATCH v2 4/5] dt-bindings: document sun8i_ths

2015-11-23 Thread Chen-Yu Tsai
On Mon, Nov 23, 2015 at 4:02 PM, Josef Gajdusek wrote: > This patch adds the binding documentation for the sun8i_ths driver > > Signed-off-by: Josef Gajdusek > --- > .../devicetree/bindings/thermal/sun8i-ths.txt | 31 > ++ > 1 file changed, 31 insertions(+) > create mo

Re: [linux-sunxi] Re: [PATCH v4 5/6] ARM: dts: sunxi: Add Allwinner H3 DTSI

2015-11-23 Thread Chen-Yu Tsai
On Mon, Nov 23, 2015 at 6:50 PM, Hans de Goede wrote: > HI, > > > On 23-11-15 09:57, Maxime Ripard wrote: >> >> Hi, >> >> On Sun, Nov 01, 2015 at 02:33:23PM +0100, Jens Kuske wrote: > > + bus_gates: clk@01c20060 { > + #clock-cells = <1>; > +

[linux-sunxi] Re: [PATCH v2 1/5] ARM: dts: sun8i: Add SID node

2015-11-23 Thread Chen-Yu Tsai
Hi, On Mon, Nov 23, 2015 at 8:43 PM, Maxime Ripard wrote: > Hi, > > On Mon, Nov 23, 2015 at 09:02:48AM +0100, Josef Gajdusek wrote: >> Add a node describing the Security ID memory to the >> Allwinner H3 .dtsi file. >> >> Signed-off-by: Josef Gajdusek >> --- >> arch/arm/boot/dts/sun8i-h3.dtsi |

[linux-sunxi] [PATCH v4 4/6] regulator: axp20x: Support new AXP223 PMIC

2015-11-23 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Reviewed-by: Mark Brown --- drivers/regulator/axp20x-regulator.c

[linux-sunxi] [PATCH v4 0/6] mfd: axp20x: Add support for RSB based AXP223

2015-11-23 Thread Chen-Yu Tsai
ors for A23/A33 based Q8 devices. Regards ChenYu Chen-Yu Tsai (6): mfd: axp20x: Add AXP223 to list of supported PMICs in DT bindings mfd: axp20x: Split the driver into core and i2c bits mfd: axp20x: Add support for RSB based AXP223 PMIC regulator: axp20x: Support new AXP223 PMIC ARM: dt

[linux-sunxi] [PATCH v4 1/6] mfd: axp20x: Add AXP223 to list of supported PMICs in DT bindings

2015-11-23 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard Acked-by: Rob Herring --- Documentation

[linux-sunxi] [PATCH v4 6/6] ARM: dts: sun8i: q8-common: Add AXP223 PMIC device and regulator nodes

2015-11-23 Thread Chen-Yu Tsai
A23/A33 Q8 tablets have an X-Powers AXP223 PMIC connected via RSB. Its regulators provide power to various parts of the SoC and the board. Also add lcd regulator supply for simplefb and update the existing vmmc-supply for mmc0. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-q8

[linux-sunxi] [PATCH v4 3/6] mfd: axp20x: Add support for RSB based AXP223 PMIC

2015-11-23 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 11 ++ drivers/mfd/Makefile

[linux-sunxi] [PATCH v4 5/6] ARM: dts: sun8i: sinlinx-sina33: Add AXP223 PMIC device and regulator nodes

2015-11-23 Thread Chen-Yu Tsai
This board has a X-Powers AXP223 PMIC connected via RSB. Its regulators provide power to various parts of the SoC and the board. Also update the regulator supply phandles. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 79 +- 1 file

[linux-sunxi] [PATCH v4 2/6] mfd: axp20x: Split the driver into core and i2c bits

2015-11-23 Thread Chen-Yu Tsai
cific glue layer. MFD_AXP20X and the new MFD_AXP20X_I2C are changed to tristate symbols, allowing the driver to be built as modules. Included but unused header files are removed as well. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 14 +++-- drivers/mfd/Makefile | 1 + d

[linux-sunxi] Re: [PATCH v2 1/5] ARM: dts: sun8i: Add SID node

2015-11-23 Thread Chen-Yu Tsai
On Tue, Nov 24, 2015 at 2:38 PM, Maxime Ripard wrote: > On Tue, Nov 24, 2015 at 11:13:13AM +0800, Chen-Yu Tsai wrote: >> Hi, >> >> On Mon, Nov 23, 2015 at 8:43 PM, Maxime Ripard >> wrote: >> > Hi, >> > >> > On Mon, Nov 23, 2015 at 09

[linux-sunxi] [PATCH v3 4/5] ARM: dts: sun9i: Add A80 PRCM clocks and reset control nodes

2015-11-24 Thread Chen-Yu Tsai
This adds the supported PRCM clocks and reset controls to the A80 dtsi. The DAUDIO module clocks are not supported yet. Also update clock and reset phandles for r_uart. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun9i-a80.dtsi | 79 +++- 1 file

[linux-sunxi] [PATCH v3 0/5] ARM: sun9i: Add Allwinner A80 PRCM clock/reset support

2015-11-24 Thread Chen-Yu Tsai
rious supported clock and reset control device nodes to the A80 dtsi. Patch 5 adds some TODO comments regarding the 2 system oscillators. Regards ChenYu Chen-Yu Tsai (5): clk: sunxi: Add CLK_OF_DECLARE support for sun8i-a23-apb0-clk driver clk: sunxi: Add sun9i A80 apbs gates support clk:

[linux-sunxi] [PATCH v3 2/5] clk: sunxi: Add sun9i A80 apbs gates support

2015-11-24 Thread Chen-Yu Tsai
This patch adds support for the PRCM apbs clock gates found on the Allwinner A80 SoC. Signed-off-by: Chen-Yu Tsai --- Documentation/devicetree/bindings/clock/sunxi.txt | 1 + drivers/clk/sunxi/clk-simple-gates.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Documentation

[linux-sunxi] [PATCH v3 1/5] clk: sunxi: Add CLK_OF_DECLARE support for sun8i-a23-apb0-clk driver

2015-11-24 Thread Chen-Yu Tsai
. Also, build it for all Allwinner/sunxi platforms, and not just for configurations with MFD_SUN6I_PRCM enabled. Signed-off-by: Chen-Yu Tsai --- drivers/clk/sunxi/Makefile | 4 ++-- drivers/clk/sunxi/clk-sun8i-apb0.c | 43 ++ 2 files changed, 45 insertions

[linux-sunxi] [PATCH v3 3/5] clk: sunxi: Add sun9i A80 cpus (cpu special) clock support

2015-11-24 Thread Chen-Yu Tsai
e types of clocks, which also includes the AHB clock driver on sun[5678]i. Signed-off-by: Chen-Yu Tsai --- Hi Maxime, I'll do the factors clock refactoring mentioned during the discussion around v2 later on. --- Documentation/devicetree/bindings/clock/sunxi.txt | 1 + drivers/clk

[linux-sunxi] [PATCH v3 5/5] ARM: dts: sun9i: Add TODO comments for the main and low power clocks

2015-11-24 Thread Chen-Yu Tsai
The main (24MHz) clock on the A80 is configurable via the PRCM address space. The low power/speed (32kHz) clock is from an external chip, the AC100. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun9i-a80.dtsi | 18 ++ 1 file changed, 18 insertions(+) diff --git a/arch/arm

[linux-sunxi] Re: [PATCH v4 2/6] mfd: axp20x: Split the driver into core and i2c bits

2015-11-24 Thread Chen-Yu Tsai
Hi, On Tue, Nov 24, 2015 at 5:37 PM, Andy Shevchenko wrote: > On Tue, Nov 24, 2015 at 5:48 AM, Chen-Yu Tsai wrote: >> The axp20x driver assumes the device is i2c based. This is not the >> case with later chips, which use a proprietary 2 wire serial bus >> by Allwinner calle

[linux-sunxi] Re: [PATCH v4 2/6] mfd: axp20x: Split the driver into core and i2c bits

2015-11-24 Thread Chen-Yu Tsai
On Tue, Nov 24, 2015 at 8:35 PM, Andy Shevchenko wrote: > On Tue, Nov 24, 2015 at 1:28 PM, Chen-Yu Tsai wrote: >> Hi, >> >> On Tue, Nov 24, 2015 at 5:37 PM, Andy Shevchenko >> wrote: >>> On Tue, Nov 24, 2015 at 5:48 AM, Chen-Yu Tsai wrote: >>>> T

[linux-sunxi] Re: [PATCH v3 1/2] phy-sun4i-usb: Use of_match_node to get model specific config data

2015-11-25 Thread Chen-Yu Tsai
On Thu, Nov 26, 2015 at 12:50 AM, Hans de Goede wrote: > Use of_match_node instead of calling of_device_is_compatible a ton of > times to get model specific config data. > > Signed-off-by: Hans de Goede > --- > Changes in v3: > -New patch in v3 of this patch-set > --- > drivers/phy/phy-sun4i-usb

[linux-sunxi] [PATCH v5 6/9] mfd: axp20x: Add support for RSB based AXP223 PMIC

2015-11-26 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai --- drivers/mfd/Kconfig| 11 +++ drivers/mfd/Makefile

[linux-sunxi] [PATCH v5 7/9] regulator: axp20x: Support new AXP223 PMIC

2015-11-26 Thread Chen-Yu Tsai
The AXP223 is a new PMIC commonly paired with Allwinner A23/A33 SoCs. It is functionally identical to AXP221; only the regulator default voltage/status and the external host interface are different. Signed-off-by: Chen-Yu Tsai Reviewed-by: Mark Brown --- drivers/regulator/axp20x-regulator.c

[linux-sunxi] [PATCH v5 8/9] ARM: dts: sun8i: sinlinx-sina33: Add AXP223 PMIC device and regulator nodes

2015-11-26 Thread Chen-Yu Tsai
This board has a X-Powers AXP223 PMIC connected via RSB. Its regulators provide power to various parts of the SoC and the board. Also update the regulator supply phandles. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 76 +- 1 file

[linux-sunxi] [PATCH v5 2/9] mfd: axp20x: Remove second struct device * parameter for axp20x_match_device()

2015-11-26 Thread Chen-Yu Tsai
-off-by: Chen-Yu Tsai --- drivers/mfd/axp20x.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c index 9842199e2e6c..685a78614f83 100644 --- a/drivers/mfd/axp20x.c +++ b/drivers/mfd/axp20x.c @@ -606,8 +606,9 @@ static void

<    5   6   7   8   9   10   11   12   13   14   >