mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-29 22:14:41 +08:00
9f296fe271
Add 3 helpers so that pincontrol definitions for pxa25x and pxa27x are easier, and can be easily converted from old mfp mach-pxa code to devicetree. An example of such conversion would be : static unsigned long mioa701_pin_config[] = { GPIO32_MMC_CLK, GPIO92_MMC_DAT_0, GPIO109_MMC_DAT_1, GPIO110_MMC_DAT_2, GPIO111_MMC_DAT_3, GPIO112_MMC_CMD, MIO_CFG_IN(GPIO78_SDIO_RO, AF0), MIO_CFG_IN(GPIO15_SDIO_INSERT, AF0), MIO_CFG_OUT(GPIO91_SDIO_EN, AF0, DRIVE_LOW), }; into: pinctrl_mmc_default: mmc-default { PMMUX(sd-insert, 15, gpio_in); PMMUX(mmclk, 32, MMCLK); PMMUX(sd-ro, 78, gpio_in); PMMUX_LPM_LOW(sd-enable, 91, gpio_out); PMMUX(mmdat0, 92, MMDAT<0>); PMMUX(mmdat1, 109, MMDAT<1>); PMMUX(mmdat2, 110, MMDAT<2>); PMMUX(mmdat3, 111, MMDAT<3>); PMMUX(mmcmd, 112, MMCMD); }; The third column of PMMUX*() helpers can be found in pincontrol muxing functions, either in pinctrl-pxa27x.c (or pinctrl-pxa25x.c), or by inspecting the pincontrol once booted in debugfs. Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
172 lines
3.4 KiB
Plaintext
172 lines
3.4 KiB
Plaintext
/*
|
|
* pxa2xx.dtsi - Device Tree Include file for Marvell PXA2xx family SoC
|
|
*
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#include "skeleton.dtsi"
|
|
#include "dt-bindings/clock/pxa-clock.h"
|
|
|
|
#define PMGROUP(pin) #pin
|
|
#define PMMUX(func, pin, af) \
|
|
mux- ## func { \
|
|
groups = PMGROUP(P ## pin); \
|
|
function = #af; \
|
|
}
|
|
#define PMMUX_LPM_LOW(func, pin, af) \
|
|
mux- ## func { \
|
|
groups = PMGROUP(P ## pin); \
|
|
function = #af; \
|
|
low-power-disable; \
|
|
}
|
|
#define PMMUX_LPM_HIGH(func, pin, af) \
|
|
mux- ## func { \
|
|
groups = PMGROUP(P ## pin); \
|
|
function = #af; \
|
|
low-power-enable; \
|
|
}
|
|
|
|
/ {
|
|
model = "Marvell PXA2xx family SoC";
|
|
compatible = "marvell,pxa2xx";
|
|
interrupt-parent = <&pxairq>;
|
|
|
|
aliases {
|
|
serial0 = &ffuart;
|
|
serial1 = &btuart;
|
|
serial2 = &stuart;
|
|
serial3 = &hwuart;
|
|
i2c0 = &pwri2c;
|
|
i2c1 = &pxai2c1;
|
|
};
|
|
|
|
cpus {
|
|
#address-cells = <0>;
|
|
#size-cells = <0>;
|
|
cpu {
|
|
compatible = "marvell,xscale";
|
|
device_type = "cpu";
|
|
};
|
|
};
|
|
|
|
pxabus {
|
|
compatible = "simple-bus";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
ranges;
|
|
|
|
pxairq: interrupt-controller@40d00000 {
|
|
#interrupt-cells = <1>;
|
|
compatible = "marvell,pxa-intc";
|
|
interrupt-controller;
|
|
interrupt-parent;
|
|
marvell,intc-nr-irqs = <32>;
|
|
reg = <0x40d00000 0xd0>;
|
|
};
|
|
|
|
gpio: gpio@40e00000 {
|
|
compatible = "mrvl,pxa-gpio";
|
|
#address-cells = <0x1>;
|
|
#size-cells = <0x1>;
|
|
reg = <0x40e00000 0x10000>;
|
|
gpio-controller;
|
|
#gpio-cells = <0x2>;
|
|
interrupts = <8>, <9>, <10>;
|
|
interrupt-names = "gpio0", "gpio1", "gpio_mux";
|
|
interrupt-controller;
|
|
#interrupt-cells = <0x2>;
|
|
ranges;
|
|
|
|
gcb0: gpio@40e00000 {
|
|
reg = <0x40e00000 0x4>;
|
|
};
|
|
|
|
gcb1: gpio@40e00004 {
|
|
reg = <0x40e00004 0x4>;
|
|
};
|
|
|
|
gcb2: gpio@40e00008 {
|
|
reg = <0x40e00008 0x4>;
|
|
};
|
|
gcb3: gpio@40e0000c {
|
|
reg = <0x40e0000c 0x4>;
|
|
};
|
|
};
|
|
|
|
ffuart: serial@40100000 {
|
|
compatible = "mrvl,pxa-uart";
|
|
reg = <0x40100000 0x30>;
|
|
interrupts = <22>;
|
|
clocks = <&clks CLK_FFUART>;
|
|
status = "disabled";
|
|
};
|
|
|
|
btuart: serial@40200000 {
|
|
compatible = "mrvl,pxa-uart";
|
|
reg = <0x40200000 0x30>;
|
|
interrupts = <21>;
|
|
clocks = <&clks CLK_BTUART>;
|
|
status = "disabled";
|
|
};
|
|
|
|
stuart: serial@40700000 {
|
|
compatible = "mrvl,pxa-uart";
|
|
reg = <0x40700000 0x30>;
|
|
interrupts = <20>;
|
|
clocks = <&clks CLK_STUART>;
|
|
status = "disabled";
|
|
};
|
|
|
|
hwuart: serial@41100000 {
|
|
compatible = "mrvl,pxa-uart";
|
|
reg = <0x41100000 0x30>;
|
|
interrupts = <7>;
|
|
status = "disabled";
|
|
};
|
|
|
|
pxai2c1: i2c@40301680 {
|
|
compatible = "mrvl,pxa-i2c";
|
|
reg = <0x40301680 0x30>;
|
|
interrupts = <18>;
|
|
clocks = <&clks CLK_I2C>;
|
|
#address-cells = <0x1>;
|
|
#size-cells = <0>;
|
|
status = "disabled";
|
|
};
|
|
|
|
usb0: ohci@4c000000 {
|
|
compatible = "marvell,pxa-ohci";
|
|
reg = <0x4c000000 0x10000>;
|
|
interrupts = <3>;
|
|
status = "disabled";
|
|
};
|
|
|
|
mmc0: mmc@41100000 {
|
|
compatible = "marvell,pxa-mmc";
|
|
reg = <0x41100000 0x1000>;
|
|
interrupts = <23>;
|
|
clocks = <&clks CLK_MMC>;
|
|
dmas = <&pdma 21 3
|
|
&pdma 22 3>;
|
|
dma-names = "rx", "tx";
|
|
status = "disabled";
|
|
};
|
|
|
|
rtc@40900000 {
|
|
compatible = "marvell,pxa-rtc";
|
|
reg = <0x40900000 0x3c>;
|
|
interrupts = <30 31>;
|
|
};
|
|
|
|
lcdc: lcd-controller@40500000 {
|
|
compatible = "marvell,pxa2xx-lcdc";
|
|
reg = <0x44000000 0x10000>;
|
|
interrupts = <17>;
|
|
clocks = <&clks CLK_LCD>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|