-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'mxs-dt-3.7' of git://git.linaro.org/people/shawnguo/linux-…
…2.6 into next/dt - Remove all board files and make mach-mxs a DT-only platform - Some dts file formatting and style fixing - DTS update for additional boards and devices * tag 'mxs-dt-3.7' of git://git.linaro.org/people/shawnguo/linux-2.6: (28 commits) ARM: dts: cfa10049: Add the 74HC595 gpio expanders ARM: dts: m28evk: Fix MMC WP pin being inverted ARM: dts: cfa10049: Add SSP3 to the 10049 board ARM: dts: mxs: Add missing address and size cells in SSP nodes ARM: mx28evk: Add I2C EEPROM support ARM: dts: mxs: Enable USB1 Host on the CFA-10049 expansion board ARM: dts: mxs: Add the second I2C adapter to the CFA10049 expansion board ARM: dts: mxs: Add I2C1 muxing options for imx28 ARM: mx28evk: Add LRADC support ARM: mx28evk: Add SPI flash support ARM: mxs: Update DENX M28 machine and dts file ARM: mx28: Add USB PHY overcurrent pinmux ARM: mx28: Add SPI 2 pinmux into imx28.dtsi ARM: dts: mxs: Add pwm4 muxing options for imx28 ARM: dts: mxs: Add alternative I2C muxing options for imx28 ARM: olinuxino: Add gpio-led support ARM: mxs: Let mmc0 pin detect be generic ARM: mxs: Rename 'hog-gpios' ARM: mxs: remove iomux driver ARM: mxs: remove platform device codes ...
- Loading branch information
Showing
47 changed files
with
485 additions
and
4,096 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
/* | ||
* Copyright 2012 Free Electrons | ||
* | ||
* The code contained herein is licensed under the GNU General Public | ||
* License. You may obtain a copy of the GNU General Public License | ||
* Version 2 or later at the following locations: | ||
* | ||
* http://www.opensource.org/licenses/gpl-license.html | ||
* http://www.gnu.org/copyleft/gpl.html | ||
*/ | ||
|
||
/* | ||
* The CFA-10049 is an expansion board for the CFA-10036 module, thus we | ||
* need to include the CFA-10036 DTS. | ||
*/ | ||
/include/ "imx28-cfa10036.dts" | ||
|
||
/ { | ||
model = "Crystalfontz CFA-10049 Board"; | ||
compatible = "crystalfontz,cfa10049", "crystalfontz,cfa10036", "fsl,imx28"; | ||
|
||
apb@80000000 { | ||
apbh@80000000 { | ||
pinctrl@80018000 { | ||
spi3_pins_cfa10049: spi3-cfa10049@0 { | ||
reg = <0>; | ||
fsl,pinmux-ids = < | ||
0x0181 /* MX28_PAD_GPMI_RDN__SSP3_SCK */ | ||
0x01c1 /* MX28_PAD_GPMI_RESETN__SSP3_CMD */ | ||
0x0111 /* MX28_PAD_GPMI_CE1N__SSP3_D3 */ | ||
0x01a2 /* MX28_PAD_GPMI_ALE__SSP3_D4 */ | ||
>; | ||
fsl,drive-strength = <1>; | ||
fsl,voltage = <1>; | ||
fsl,pull-up = <1>; | ||
}; | ||
}; | ||
|
||
ssp3: ssp@80016000 { | ||
compatible = "fsl,imx28-spi"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&spi3_pins_cfa10049>; | ||
status = "okay"; | ||
|
||
gpio5: gpio5@0 { | ||
compatible = "fairchild,74hc595"; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
reg = <0>; | ||
registers-number = <2>; | ||
spi-max-frequency = <100000>; | ||
}; | ||
|
||
gpio6: gpio6@1 { | ||
compatible = "fairchild,74hc595"; | ||
gpio-controller; | ||
#gpio-cells = <2>; | ||
reg = <1>; | ||
registers-number = <4>; | ||
spi-max-frequency = <100000>; | ||
}; | ||
|
||
}; | ||
}; | ||
|
||
apbx@80040000 { | ||
i2c1: i2c@8005a000 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&i2c1_pins_a>; | ||
status = "okay"; | ||
}; | ||
|
||
usbphy1: usbphy@8007e000 { | ||
status = "okay"; | ||
}; | ||
}; | ||
}; | ||
|
||
ahb@80080000 { | ||
usb1: usb@80090000 { | ||
vbus-supply = <®_usb1_vbus>; | ||
pinctrl-0 = <&usbphy1_pins_a>; | ||
pinctrl-names = "default"; | ||
status = "okay"; | ||
}; | ||
}; | ||
|
||
regulators { | ||
compatible = "simple-bus"; | ||
|
||
reg_usb1_vbus: usb1_vbus { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "usb1_vbus"; | ||
regulator-min-microvolt = <5000000>; | ||
regulator-max-microvolt = <5000000>; | ||
gpio = <&gpio0 7 1>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.