Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 1 | * Texas Instruments OMAP |
| 2 | |
| 3 | OMAP is currently using a static file per SoC family to describe the |
| 4 | IPs present in the SoC. |
| 5 | On top of that an omap_device is created to extend the platform_device |
| 6 | capabilities and to allow binding with one or several hwmods. |
| 7 | The hwmods will contain all the information to build the device: |
Masanari Iida | 40e4712 | 2012-03-04 23:16:11 +0900 | [diff] [blame] | 8 | address range, irq lines, dma lines, interconnect, PRCM register, |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 9 | clock domain, input clocks. |
| 10 | For the moment just point to the existing hwmod, the next step will be |
| 11 | to move data from hwmod to device-tree representation. |
| 12 | |
| 13 | |
| 14 | Required 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 | |
| 21 | Optional properties: |
| 22 | - ti,no_idle_on_suspend: When present, it prevents the PM to idle the module |
| 23 | during suspend. |
Rajendra Nayak | f12ecbe2 | 2013-10-15 12:37:50 +0530 | [diff] [blame] | 24 | - 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 Vutla | 2e18f5a | 2016-03-07 01:41:21 -0700 | [diff] [blame] | 26 | - ti,no-idle: When present, the module is never allowed to idle. |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 27 | |
| 28 | Example: |
| 29 | |
| 30 | spinlock@1 { |
| 31 | compatible = "ti,omap4-spinlock"; |
| 32 | ti,hwmods = "spinlock"; |
| 33 | }; |
| 34 | |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 35 | SoC Type (optional): |
| 36 | |
| 37 | - General Purpose devices |
| 38 | compatible = "ti,gp" |
| 39 | - High Security devices |
| 40 | compatible = "ti,hs" |
| 41 | |
| 42 | SoC Families: |
| 43 | |
| 44 | - OMAP2 generic - defaults to OMAP2420 |
| 45 | compatible = "ti,omap2" |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 46 | - OMAP3 generic |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 47 | 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 Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 54 | - AM33x generic |
| 55 | compatible = "ti,am33xx" |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 56 | - AM43x generic - defaults to AM4372 |
| 57 | compatible = "ti,am43" |
| 58 | |
| 59 | SoCs: |
| 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 Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 68 | legacy: "ti,omap34xx" - please do not use any more |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 69 | - AM3517 |
| 70 | compatible = "ti,am3517", "ti,omap3" |
| 71 | - OMAP3630 |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 72 | compatible = "ti,omap3630", "ti,omap3" |
| 73 | legacy: "ti,omap36xx" - please do not use any more |
| 74 | - AM335x |
| 75 | compatible = "ti,am33xx" |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 76 | |
| 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 Vutla | 4dc6760 | 2017-08-12 09:35:58 +0530 | [diff] [blame] | 87 | - DRA762 |
| 88 | compatible = "ti,dra762", "ti,dra7" |
| 89 | |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 90 | - DRA742 |
Rajendra Nayak | 38b248d | 2014-04-29 16:35:10 +0530 | [diff] [blame] | 91 | compatible = "ti,dra742", "ti,dra74", "ti,dra7" |
| 92 | |
| 93 | - DRA722 |
| 94 | compatible = "ti,dra722", "ti,dra72", "ti,dra7" |
Nishanth Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 95 | |
Lokesh Vutla | a2af765 | 2016-10-21 16:08:37 +0530 | [diff] [blame] | 96 | - DRA718 |
| 97 | compatible = "ti,dra718", "ti,dra722", "ti,dra72", "ti,dra7" |
| 98 | |
Roger Quadros | 09f8375 | 2019-04-05 16:28:05 +0300 | [diff] [blame] | 99 | - AM5748 |
| 100 | compatible = "ti,am5748", "ti,dra762", "ti,dra7" |
| 101 | |
Nishanth Menon | 0e0cb99 | 2014-08-18 14:07:55 -0500 | [diff] [blame] | 102 | - 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 Menon | 89b6eef | 2013-12-04 18:49:36 -0600 | [diff] [blame] | 114 | - AM4372 |
| 115 | compatible = "ti,am4372", "ti,am43" |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 116 | |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 117 | Boards (incomplete list of examples): |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 118 | |
| 119 | - OMAP3 BeagleBoard : Low cost community board |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 120 | compatible = "ti,omap3-beagle", "ti,omap3430", "ti,omap3" |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 121 | |
Tony Lindgren | 2388538 | 2021-11-25 16:48:34 +0200 | [diff] [blame] | 122 | - 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 Vaussard | 807e1b4 | 2012-08-31 18:06:12 +0200 | [diff] [blame] | 125 | - OMAP3 Tobi with Overo : Commercial expansion board with daughter board |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 126 | compatible = "gumstix,omap3-overo-tobi", "gumstix,omap3-overo", "ti,omap3430", "ti,omap3" |
Florian Vaussard | 807e1b4 | 2012-08-31 18:06:12 +0200 | [diff] [blame] | 127 | |
Masanari Iida | f21ccfa | 2013-01-14 15:14:56 +0900 | [diff] [blame] | 128 | - OMAP4 SDP : Software Development Board |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 129 | compatible = "ti,omap4-sdp", "ti,omap4430", "ti,omap4" |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 130 | |
| 131 | - OMAP4 PandaBoard : Low cost community board |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 132 | compatible = "ti,omap4-panda", "ti,omap4430", "ti,omap4" |
Vaibhav Hiremath | 5411972 | 2012-02-01 11:57:00 +0530 | [diff] [blame] | 133 | |
Florian Vaussard | 5eb9b5e | 2014-02-24 18:07:48 +0100 | [diff] [blame] | 134 | - 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 Eastwood | 3906540 | 2014-05-12 20:32:00 +0200 | [diff] [blame] | 137 | - 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 Eastwood | bdfd0ab | 2014-05-12 20:32:01 +0200 | [diff] [blame] | 140 | - 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 Iida | f21ccfa | 2013-01-14 15:14:56 +0900 | [diff] [blame] | 143 | - OMAP3 EVM : Software Development Board for OMAP35x, AM/DM37x |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 144 | compatible = "ti,omap3-evm", "ti,omap3630", "ti,omap3" |
Vaibhav Hiremath | 5411972 | 2012-02-01 11:57:00 +0530 | [diff] [blame] | 145 | |
Masanari Iida | f21ccfa | 2013-01-14 15:14:56 +0900 | [diff] [blame] | 146 | - AM335X EVM : Software Development Board for AM335x |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 147 | compatible = "ti,am335x-evm", "ti,am33xx" |
AnilKumar Ch | 6a66a8b | 2012-06-22 15:10:50 +0530 | [diff] [blame] | 148 | |
| 149 | - AM335X Bone : Low cost community board |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 150 | compatible = "ti,am335x-bone", "ti,am33xx" |
Linus Torvalds | f01b9b7 | 2012-07-23 16:31:31 -0700 | [diff] [blame] | 151 | |
Lokesh Vutla | 2061d74 | 2016-03-23 09:04:13 +0530 | [diff] [blame] | 152 | - AM3359 ICEv2 : Low cost Industrial Communication Engine EVM. |
H. Nikolaus Schaller | b552904 | 2019-09-11 19:47:09 +0200 | [diff] [blame] | 153 | compatible = "ti,am3359-icev2", "ti,am33xx" |
Lokesh Vutla | 2061d74 | 2016-03-23 09:04:13 +0530 | [diff] [blame] | 154 | |
George McCollister | d574454 | 2014-11-17 13:02:35 -0600 | [diff] [blame] | 155 | - AM335X OrionLXm : Substation Automation Platform |
| 156 | compatible = "novatech,am335x-lxm", "ti,am33xx" |
| 157 | |
Teresa Remmet | 36bd168 | 2015-07-16 10:30:49 +0200 | [diff] [blame] | 158 | - AM335X phyBOARD-WEGA: Single Board Computer dev kit |
| 159 | compatible = "phytec,am335x-wega", "phytec,am335x-phycore-som", "ti,am33xx" |
| 160 | |
Ilya Ledvich | 15be817 | 2015-11-24 16:02:08 +0200 | [diff] [blame] | 161 | - AM335X CM-T335 : System On Module, built around the Sitara AM3352/4 |
| 162 | compatible = "compulab,cm-t335", "ti,am33xx" |
| 163 | |
Uri Mashiach | c6135a6 | 2015-12-13 10:55:36 +0200 | [diff] [blame] | 164 | - AM335X SBC-T335 : single board computer, built around the Sitara AM3352/4 |
| 165 | compatible = "compulab,sbc-t335", "compulab,cm-t335", "ti,am33xx" |
| 166 | |
Teresa Remmet | bb07a82 | 2017-01-24 11:09:34 +0100 | [diff] [blame] | 167 | - AM335X phyCORE-AM335x: Development kit |
| 168 | compatible = "phytec,am335x-pcm-953", "phytec,am335x-phycore-som", "ti,am33xx" |
| 169 | |
Teresa Remmet | e3630fd9 | 2019-05-24 15:20:03 +0200 | [diff] [blame] | 170 | - AM335x phyBOARD-REGOR: Single Board Computer |
| 171 | compatible = "phytec,am335x-regor", "phytec,am335x-phycore-som", "ti,am33xx" |
| 172 | |
SZ Lin | 5e45286 | 2017-08-02 14:57:57 +0800 | [diff] [blame] | 173 | - AM335X UC-8100-ME-T: Communication-centric industrial computing platform |
| 174 | compatible = "moxa,uc-8100-me-t", "ti,am33xx"; |
| 175 | |
R Sricharan | 0c1b6fa | 2012-05-09 23:34:56 +0530 | [diff] [blame] | 176 | - OMAP5 EVM : Evaluation Module |
| 177 | compatible = "ti,omap5-evm", "ti,omap5" |
Afzal Mohammed | 4730bcf | 2013-06-14 19:33:34 +0530 | [diff] [blame] | 178 | |
Nikita Kiryanov | 686c47f | 2015-12-01 15:54:56 +0200 | [diff] [blame] | 179 | - 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 Mohammed | 4730bcf | 2013-06-14 19:33:34 +0530 | [diff] [blame] | 185 | - AM43x EPOS EVM |
Keerthy | 69101b2 | 2016-02-19 10:08:54 +0530 | [diff] [blame] | 186 | compatible = "ti,am43x-epos-evm", "ti,am43", "ti,am438x" |
R Sricharan | 439bf39 | 2013-02-07 13:53:05 +0530 | [diff] [blame] | 187 | |
Lokesh Vutla | 11e2191 | 2013-12-19 18:03:38 +0530 | [diff] [blame] | 188 | - AM437x GP EVM |
| 189 | compatible = "ti,am437x-gp-evm", "ti,am4372", "ti,am43" |
| 190 | |
Felipe Balbi | 4a45787 | 2014-06-23 13:20:59 -0500 | [diff] [blame] | 191 | - AM437x SK EVM: AM437x StarterKit Evaluation Module |
| 192 | compatible = "ti,am437x-sk-evm", "ti,am4372", "ti,am43" |
| 193 | |
Dmitry Lifshitz | 387450f | 2015-12-01 20:03:03 +0200 | [diff] [blame] | 194 | - AM57XX CL-SOM-AM57x |
| 195 | compatible = "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7" |
| 196 | |
Dmitry Lifshitz | e1fdd06 | 2015-12-01 20:03:13 +0200 | [diff] [blame] | 197 | - AM57XX SBC-AM57x |
| 198 | compatible = "compulab,sbc-am57x", "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7" |
| 199 | |
Roger Quadros | 09f8375 | 2019-04-05 16:28:05 +0300 | [diff] [blame] | 200 | - AM5748 IDK |
| 201 | compatible = "ti,am5748-idk", "ti,am5748", "ti,dra762", "ti,dra7"; |
| 202 | |
Schuyler Patton | a7cac71 | 2016-03-28 11:35:09 -0500 | [diff] [blame] | 203 | - AM5728 IDK |
| 204 | compatible = "ti,am5728-idk", "ti,am5728", "ti,dra742", "ti,dra74", "ti,dra7" |
| 205 | |
Schuyler Patton | 5817430 | 2016-11-22 09:47:32 +0530 | [diff] [blame] | 206 | - AM5718 IDK |
| 207 | compatible = "ti,am5718-idk", "ti,am5718", "ti,dra7" |
| 208 | |
Lokesh Vutla | 895bd4b | 2017-08-12 09:36:05 +0530 | [diff] [blame] | 209 | - DRA762 EVM: Software Development Board for DRA762 |
| 210 | compatible = "ti,dra76-evm", "ti,dra762", "ti,dra7" |
| 211 | |
Linus Torvalds | 1aacb90 | 2014-06-04 08:50:34 -0700 | [diff] [blame] | 212 | - DRA742 EVM: Software Development Board for DRA742 |
Rajendra Nayak | 38b248d | 2014-04-29 16:35:10 +0530 | [diff] [blame] | 213 | 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 Ford | 547868f | 2016-08-27 21:19:25 -0500 | [diff] [blame] | 217 | |
Lokesh Vutla | a2af765 | 2016-10-21 16:08:37 +0530 | [diff] [blame] | 218 | - DRA718 EVM: Software Development Board for DRA718 |
| 219 | compatible = "ti,dra718-evm", "ti,dra718", "ti,dra722", "ti,dra72", "ti,dra7" |
| 220 | |
Adam Ford | 547868f | 2016-08-27 21:19:25 -0500 | [diff] [blame] | 221 | - 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" |