-
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.
ARM: dts: da850: Add basic DTS for the LCDK
The LCDK is the successor to the late Hawkboard. Among the differences are the flash (16bits vs 8bits) and some pins (MMC, LEDs, buttons, some external connectors), however the main components remain the same (eth. phy, audio codec, video decoder and DAC) except for the main PMIC, different and hard-wired on the LCDK (the LDOs and DCDCs are always on). A DT-only boot with this addition gives functional UART, reboot via watchdog, RTC, ethernet and MMC (I added the CD GPIO for the MMC although davinci_mmc doesn't call the OF facilities of mmc core). Cc: Sekhar Nori <nsekhar@ti.com> Tested-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Karl Beldan <kbeldan@baylibre.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
- Loading branch information
Karl Beldan
authored and
Sekhar Nori
committed
Aug 9, 2016
1 parent
10ead75
commit 44524a0
Showing
4 changed files
with
76 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright (c) 2016 BayLibre, Inc. | ||
* | ||
* Licensed under GPLv2. | ||
*/ | ||
/dts-v1/; | ||
#include "da850.dtsi" | ||
#include <dt-bindings/gpio/gpio.h> | ||
|
||
/ { | ||
model = "DA850/AM1808/OMAP-L138 LCDK"; | ||
compatible = "ti,da850-lcdk", "ti,da850"; | ||
|
||
aliases { | ||
serial2 = &serial2; | ||
}; | ||
|
||
chosen { | ||
stdout-path = "serial2:115200n8"; | ||
}; | ||
|
||
memory { | ||
device_type = "memory"; | ||
reg = <0xc0000000 0x08000000>; | ||
}; | ||
}; | ||
|
||
&pmx_core { | ||
status = "okay"; | ||
}; | ||
|
||
&serial2 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&serial2_rxtx_pins>; | ||
status = "okay"; | ||
}; | ||
|
||
&wdt { | ||
status = "okay"; | ||
}; | ||
|
||
&rtc0 { | ||
status = "okay"; | ||
}; | ||
|
||
&gpio { | ||
status = "okay"; | ||
}; | ||
|
||
&mdio { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&mdio_pins>; | ||
bus_freq = <2200000>; | ||
status = "okay"; | ||
}; | ||
|
||
ð0 { | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&mii_pins>; | ||
status = "okay"; | ||
}; | ||
|
||
&mmc0 { | ||
max-frequency = <50000000>; | ||
bus-width = <4>; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&mmc0_pins>; | ||
cd-gpios = <&gpio 64 GPIO_ACTIVE_HIGH>; | ||
status = "okay"; | ||
}; |
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