blob: fa8b31660cadd1e2cfd0c7cc8c19bb971be3808e [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
Lokesh Vutla2e18f5a2016-03-07 01:41:21 -070026- ti,no-idle: When present, the module is never allowed to idle.
Benoit Coussondc2d07e2011-08-10 13:32:08 +020027
28Example:
29
30spinlock@1 {
31 compatible = "ti,omap4-spinlock";
32 ti,hwmods = "spinlock";
33};
34
Nishanth Menon89b6eef2013-12-04 18:49:36 -060035SoC Type (optional):
36
37- General Purpose devices
38 compatible = "ti,gp"
39- High Security devices
40 compatible = "ti,hs"
41
42SoC Families:
43
44- OMAP2 generic - defaults to OMAP2420
45 compatible = "ti,omap2"
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +020046- OMAP3 generic
Nishanth Menon89b6eef2013-12-04 18:49:36 -060047 compatible = "ti,omap3"
48- OMAP4 generic - defaults to OMAP4430
49 compatible = "ti,omap4"
50- OMAP5 generic - defaults to OMAP5430
51 compatible = "ti,omap5"
52- DRA7 generic - defaults to DRA742
53 compatible = "ti,dra7"
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +020054- AM33x generic
55 compatible = "ti,am33xx"
Nishanth Menon89b6eef2013-12-04 18:49:36 -060056- AM43x generic - defaults to AM4372
57 compatible = "ti,am43"
58
59SoCs:
60
61- OMAP2420
62 compatible = "ti,omap2420", "ti,omap2"
63- OMAP2430
64 compatible = "ti,omap2430", "ti,omap2"
65
66- OMAP3430
67 compatible = "ti,omap3430", "ti,omap3"
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +020068 legacy: "ti,omap34xx" - please do not use any more
Nishanth Menon89b6eef2013-12-04 18:49:36 -060069- AM3517
70 compatible = "ti,am3517", "ti,omap3"
71- OMAP3630
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +020072 compatible = "ti,omap3630", "ti,omap3"
73 legacy: "ti,omap36xx" - please do not use any more
74- AM335x
75 compatible = "ti,am33xx"
Nishanth Menon89b6eef2013-12-04 18:49:36 -060076
77- OMAP4430
78 compatible = "ti,omap4430", "ti,omap4"
79- OMAP4460
80 compatible = "ti,omap4460", "ti,omap4"
81
82- OMAP5430
83 compatible = "ti,omap5430", "ti,omap5"
84- OMAP5432
85 compatible = "ti,omap5432", "ti,omap5"
86
Lokesh Vutla4dc67602017-08-12 09:35:58 +053087- DRA762
88 compatible = "ti,dra762", "ti,dra7"
89
Nishanth Menon89b6eef2013-12-04 18:49:36 -060090- DRA742
Rajendra Nayak38b248d2014-04-29 16:35:10 +053091 compatible = "ti,dra742", "ti,dra74", "ti,dra7"
92
93- DRA722
94 compatible = "ti,dra722", "ti,dra72", "ti,dra7"
Nishanth Menon89b6eef2013-12-04 18:49:36 -060095
Lokesh Vutlaa2af7652016-10-21 16:08:37 +053096- DRA718
97 compatible = "ti,dra718", "ti,dra722", "ti,dra72", "ti,dra7"
98
Roger Quadros09f83752019-04-05 16:28:05 +030099- AM5748
100 compatible = "ti,am5748", "ti,dra762", "ti,dra7"
101
Nishanth Menon0e0cb992014-08-18 14:07:55 -0500102- AM5728
103 compatible = "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7"
104
105- AM5726
106 compatible = "ti,am5726", "ti,dra742", "ti,dra74", "ti,dra7"
107
108- AM5718
109 compatible = "ti,am5718", "ti,dra722", "ti,dra72", "ti,dra7"
110
111- AM5716
112 compatible = "ti,am5716", "ti,dra722", "ti,dra72", "ti,dra7"
113
Nishanth Menon89b6eef2013-12-04 18:49:36 -0600114- AM4372
115 compatible = "ti,am4372", "ti,am43"
Benoit Coussondc2d07e2011-08-10 13:32:08 +0200116
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200117Boards (incomplete list of examples):
Benoit Coussondc2d07e2011-08-10 13:32:08 +0200118
119- OMAP3 BeagleBoard : Low cost community board
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200120 compatible = "ti,omap3-beagle", "ti,omap3430", "ti,omap3"
Benoit Coussondc2d07e2011-08-10 13:32:08 +0200121
Tony Lindgren23885382021-11-25 16:48:34 +0200122- OMAP3 BeagleBoard A to B4 : Early BeagleBoard revisions A to B4 with a timer quirk
123 compatible = "ti,omap3-beagle-ab4", "ti,omap3-beagle", "ti,omap3430", "ti,omap3"
124
Florian Vaussard807e1b42012-08-31 18:06:12 +0200125- OMAP3 Tobi with Overo : Commercial expansion board with daughter board
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200126 compatible = "gumstix,omap3-overo-tobi", "gumstix,omap3-overo", "ti,omap3430", "ti,omap3"
Florian Vaussard807e1b42012-08-31 18:06:12 +0200127
Masanari Iidaf21ccfa2013-01-14 15:14:56 +0900128- OMAP4 SDP : Software Development Board
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200129 compatible = "ti,omap4-sdp", "ti,omap4430", "ti,omap4"
Benoit Coussondc2d07e2011-08-10 13:32:08 +0200130
131- OMAP4 PandaBoard : Low cost community board
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200132 compatible = "ti,omap4-panda", "ti,omap4430", "ti,omap4"
Vaibhav Hiremath54119722012-02-01 11:57:00 +0530133
Florian Vaussard5eb9b5e2014-02-24 18:07:48 +0100134- OMAP4 DuoVero with Parlor : Commercial expansion board with daughter board
135 compatible = "gumstix,omap4-duovero-parlor", "gumstix,omap4-duovero", "ti,omap4430", "ti,omap4";
136
Joachim Eastwood39065402014-05-12 20:32:00 +0200137- OMAP4 VAR-STK-OM44 : Commercial dev kit with VAR-OM44CustomBoard and VAR-SOM-OM44 w/WLAN
138 compatible = "variscite,var-stk-om44", "variscite,var-som-om44", "ti,omap4460", "ti,omap4";
139
Joachim Eastwoodbdfd0ab2014-05-12 20:32:01 +0200140- OMAP4 VAR-DVK-OM44 : Commercial dev kit with VAR-OM44CustomBoard, VAR-SOM-OM44 w/WLAN and LCD touchscreen
141 compatible = "variscite,var-dvk-om44", "variscite,var-som-om44", "ti,omap4460", "ti,omap4";
142
Masanari Iidaf21ccfa2013-01-14 15:14:56 +0900143- OMAP3 EVM : Software Development Board for OMAP35x, AM/DM37x
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200144 compatible = "ti,omap3-evm", "ti,omap3630", "ti,omap3"
Vaibhav Hiremath54119722012-02-01 11:57:00 +0530145
Masanari Iidaf21ccfa2013-01-14 15:14:56 +0900146- AM335X EVM : Software Development Board for AM335x
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200147 compatible = "ti,am335x-evm", "ti,am33xx"
AnilKumar Ch6a66a8b2012-06-22 15:10:50 +0530148
149- AM335X Bone : Low cost community board
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200150 compatible = "ti,am335x-bone", "ti,am33xx"
Linus Torvaldsf01b9b72012-07-23 16:31:31 -0700151
Lokesh Vutla2061d742016-03-23 09:04:13 +0530152- AM3359 ICEv2 : Low cost Industrial Communication Engine EVM.
H. Nikolaus Schallerb5529042019-09-11 19:47:09 +0200153 compatible = "ti,am3359-icev2", "ti,am33xx"
Lokesh Vutla2061d742016-03-23 09:04:13 +0530154
George McCollisterd5744542014-11-17 13:02:35 -0600155- AM335X OrionLXm : Substation Automation Platform
156 compatible = "novatech,am335x-lxm", "ti,am33xx"
157
Teresa Remmet36bd1682015-07-16 10:30:49 +0200158- AM335X phyBOARD-WEGA: Single Board Computer dev kit
159 compatible = "phytec,am335x-wega", "phytec,am335x-phycore-som", "ti,am33xx"
160
Ilya Ledvich15be8172015-11-24 16:02:08 +0200161- AM335X CM-T335 : System On Module, built around the Sitara AM3352/4
162 compatible = "compulab,cm-t335", "ti,am33xx"
163
Uri Mashiachc6135a62015-12-13 10:55:36 +0200164- AM335X SBC-T335 : single board computer, built around the Sitara AM3352/4
165 compatible = "compulab,sbc-t335", "compulab,cm-t335", "ti,am33xx"
166
Teresa Remmetbb07a822017-01-24 11:09:34 +0100167- AM335X phyCORE-AM335x: Development kit
168 compatible = "phytec,am335x-pcm-953", "phytec,am335x-phycore-som", "ti,am33xx"
169
Teresa Remmete3630fd92019-05-24 15:20:03 +0200170- AM335x phyBOARD-REGOR: Single Board Computer
171 compatible = "phytec,am335x-regor", "phytec,am335x-phycore-som", "ti,am33xx"
172
SZ Lin5e452862017-08-02 14:57:57 +0800173- AM335X UC-8100-ME-T: Communication-centric industrial computing platform
174 compatible = "moxa,uc-8100-me-t", "ti,am33xx";
175
R Sricharan0c1b6fa2012-05-09 23:34:56 +0530176- OMAP5 EVM : Evaluation Module
177 compatible = "ti,omap5-evm", "ti,omap5"
Afzal Mohammed4730bcf2013-06-14 19:33:34 +0530178
Nikita Kiryanov686c47f2015-12-01 15:54:56 +0200179- AM437x CM-T43
180 compatible = "compulab,am437x-cm-t43", "ti,am4372", "ti,am43"
181
182- AM437x SBC-T43
183 compatible = "compulab,am437x-sbc-t43", "compulab,am437x-cm-t43", "ti,am4372", "ti,am43"
184
Afzal Mohammed4730bcf2013-06-14 19:33:34 +0530185- AM43x EPOS EVM
Keerthy69101b22016-02-19 10:08:54 +0530186 compatible = "ti,am43x-epos-evm", "ti,am43", "ti,am438x"
R Sricharan439bf392013-02-07 13:53:05 +0530187
Lokesh Vutla11e21912013-12-19 18:03:38 +0530188- AM437x GP EVM
189 compatible = "ti,am437x-gp-evm", "ti,am4372", "ti,am43"
190
Felipe Balbi4a457872014-06-23 13:20:59 -0500191- AM437x SK EVM: AM437x StarterKit Evaluation Module
192 compatible = "ti,am437x-sk-evm", "ti,am4372", "ti,am43"
193
Dmitry Lifshitz387450f2015-12-01 20:03:03 +0200194- AM57XX CL-SOM-AM57x
195 compatible = "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7"
196
Dmitry Lifshitze1fdd062015-12-01 20:03:13 +0200197- AM57XX SBC-AM57x
198 compatible = "compulab,sbc-am57x", "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7"
199
Roger Quadros09f83752019-04-05 16:28:05 +0300200- AM5748 IDK
201 compatible = "ti,am5748-idk", "ti,am5748", "ti,dra762", "ti,dra7";
202
Schuyler Pattona7cac712016-03-28 11:35:09 -0500203- AM5728 IDK
204 compatible = "ti,am5728-idk", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7"
205
Schuyler Patton58174302016-11-22 09:47:32 +0530206- AM5718 IDK
207 compatible = "ti,am5718-idk", "ti,am5718", "ti,dra7"
208
Lokesh Vutla895bd4b2017-08-12 09:36:05 +0530209- DRA762 EVM: Software Development Board for DRA762
210 compatible = "ti,dra76-evm", "ti,dra762", "ti,dra7"
211
Linus Torvalds1aacb902014-06-04 08:50:34 -0700212- DRA742 EVM: Software Development Board for DRA742
Rajendra Nayak38b248d2014-04-29 16:35:10 +0530213 compatible = "ti,dra7-evm", "ti,dra742", "ti,dra74", "ti,dra7"
214
215- DRA722 EVM: Software Development Board for DRA722
216 compatible = "ti,dra72-evm", "ti,dra722", "ti,dra72", "ti,dra7"
Adam Ford547868f2016-08-27 21:19:25 -0500217
Lokesh Vutlaa2af7652016-10-21 16:08:37 +0530218- DRA718 EVM: Software Development Board for DRA718
219 compatible = "ti,dra718-evm", "ti,dra718", "ti,dra722", "ti,dra72", "ti,dra7"
220
Adam Ford547868f2016-08-27 21:19:25 -0500221- DM3730 Logic PD Torpedo + Wireless: Commercial System on Module with WiFi and Bluetooth
222 compatible = "logicpd,dm3730-torpedo-devkit", "ti,omap3630", "ti,omap3"
223
224- DM3730 Logic PD SOM-LV: Commercial System on Module with WiFi and Bluetooth
225 compatible = "logicpd,dm3730-som-lv-devkit", "ti,omap3630", "ti,omap3"