blob: 1f7fa50414b6b8f4c761d6bf3d70a846654bfd64 [file] [log] [blame]
Maxime Riparddb84c032012-08-31 16:00:41 +02001/*
2 * Copyright 2012 Free Electrons
3 *
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
7 *
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
10 */
11
12/*
13 * The CFA-10049 is an expansion board for the CFA-10036 module, thus we
14 * need to include the CFA-10036 DTS.
15 */
16/include/ "imx28-cfa10036.dts"
17
18/ {
19 model = "Crystalfontz CFA-10049 Board";
20 compatible = "crystalfontz,cfa10049", "crystalfontz,cfa10036", "fsl,imx28";
21
22 apb@80000000 {
Maxime Ripard223d1f92012-09-04 10:44:03 +020023 apbh@80000000 {
24 pinctrl@80018000 {
25 spi3_pins_cfa10049: spi3-cfa10049@0 {
26 reg = <0>;
27 fsl,pinmux-ids = <
28 0x0181 /* MX28_PAD_GPMI_RDN__SSP3_SCK */
29 0x01c1 /* MX28_PAD_GPMI_RESETN__SSP3_CMD */
30 >;
31 fsl,drive-strength = <1>;
32 fsl,voltage = <1>;
33 fsl,pull-up = <1>;
34 };
35 };
36
37 ssp3: ssp@80016000 {
38 compatible = "fsl,imx28-spi";
39 pinctrl-names = "default";
40 pinctrl-0 = <&spi3_pins_cfa10049>;
41 status = "okay";
42 };
43 };
44
Maxime Riparddb84c032012-08-31 16:00:41 +020045 apbx@80040000 {
46 i2c1: i2c@8005a000 {
47 pinctrl-names = "default";
48 pinctrl-0 = <&i2c1_pins_a>;
49 status = "okay";
50 };
Maxime Ripard186e3d92012-09-03 16:15:25 +020051
52 usbphy1: usbphy@8007e000 {
53 status = "okay";
54 };
55 };
56 };
57
58 ahb@80080000 {
59 usb1: usb@80090000 {
60 vbus-supply = <&reg_usb1_vbus>;
61 pinctrl-0 = <&usbphy1_pins_a>;
62 pinctrl-names = "default";
63 status = "okay";
64 };
65 };
66
67 regulators {
68 compatible = "simple-bus";
69
70 reg_usb1_vbus: usb1_vbus {
71 compatible = "regulator-fixed";
72 regulator-name = "usb1_vbus";
73 regulator-min-microvolt = <5000000>;
74 regulator-max-microvolt = <5000000>;
75 gpio = <&gpio0 7 1>;
Maxime Riparddb84c032012-08-31 16:00:41 +020076 };
77 };
78};