blob: 808c1543b0f87f374c5d93517d8389a3b3479be9 [file] [log] [blame]
Benoit Coussondc2d07e2011-08-10 13:32:08 +02001* Texas Instruments OMAP
2
3OMAP is currently using a static file per SoC family to describe the
4IPs present in the SoC.
5On top of that an omap_device is created to extend the platform_device
6capabilities and to allow binding with one or several hwmods.
7The hwmods will contain all the information to build the device:
Masanari Iida40e47122012-03-04 23:16:11 +09008address range, irq lines, dma lines, interconnect, PRCM register,
Benoit Coussondc2d07e2011-08-10 13:32:08 +02009clock domain, input clocks.
10For the moment just point to the existing hwmod, the next step will be
11to move data from hwmod to device-tree representation.
12
13
14Required properties:
15- compatible: Every devices present in OMAP SoC should be in the
16 form: "ti,XXX"
17- ti,hwmods: list of hwmod names (ascii strings), that comes from the OMAP
18 HW documentation, attached to a device. Must contain at least
19 one hwmod.
20
21Optional properties:
22- ti,no_idle_on_suspend: When present, it prevents the PM to idle the module
23 during suspend.
Rajendra Nayakf12ecbe22013-10-15 12:37:50 +053024- ti,no-reset-on-init: When present, the module should not be reset at init
25- ti,no-idle-on-init: When present, the module should not be idled at init
Benoit Coussondc2d07e2011-08-10 13:32:08 +020026
27Example:
28
29spinlock@1 {
30 compatible = "ti,omap4-spinlock";
31 ti,hwmods = "spinlock";
32};
33
34
35Boards:
36
37- OMAP3 BeagleBoard : Low cost community board
38 compatible = "ti,omap3-beagle", "ti,omap3"
39
Florian Vaussard807e1b42012-08-31 18:06:12 +020040- OMAP3 Tobi with Overo : Commercial expansion board with daughter board
41 compatible = "ti,omap3-tobi", "ti,omap3-overo", "ti,omap3"
42
Masanari Iidaf21ccfa2013-01-14 15:14:56 +090043- OMAP4 SDP : Software Development Board
Benoit Coussondc2d07e2011-08-10 13:32:08 +020044 compatible = "ti,omap4-sdp", "ti,omap4430"
45
46- OMAP4 PandaBoard : Low cost community board
47 compatible = "ti,omap4-panda", "ti,omap4430"
Vaibhav Hiremath54119722012-02-01 11:57:00 +053048
Masanari Iidaf21ccfa2013-01-14 15:14:56 +090049- OMAP3 EVM : Software Development Board for OMAP35x, AM/DM37x
Vaibhav Hiremath54119722012-02-01 11:57:00 +053050 compatible = "ti,omap3-evm", "ti,omap3"
51
Masanari Iidaf21ccfa2013-01-14 15:14:56 +090052- AM335X EVM : Software Development Board for AM335x
Vaibhav Hiremath54119722012-02-01 11:57:00 +053053 compatible = "ti,am335x-evm", "ti,am33xx", "ti,omap3"
AnilKumar Ch6a66a8b2012-06-22 15:10:50 +053054
55- AM335X Bone : Low cost community board
56 compatible = "ti,am335x-bone", "ti,am33xx", "ti,omap3"
Linus Torvaldsf01b9b72012-07-23 16:31:31 -070057
R Sricharan0c1b6fa2012-05-09 23:34:56 +053058- OMAP5 EVM : Evaluation Module
59 compatible = "ti,omap5-evm", "ti,omap5"
Afzal Mohammed4730bcf2013-06-14 19:33:34 +053060
61- AM43x EPOS EVM
62 compatible = "ti,am43x-epos-evm", "ti,am4372", "ti,am43"
R Sricharan439bf392013-02-07 13:53:05 +053063
64- DRA7 EVM: Software Developement Board for DRA7XX
65 compatible = "ti,dra7-evm", "ti,dra7"