| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 1 | /* | 
|  | 2 | * Device Tree Source for OMAP243x SoC | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ | 
|  | 5 | * | 
|  | 6 | * This file is licensed under the terms of the GNU General Public License | 
|  | 7 | * version 2.  This program is licensed "as is" without any warranty of any | 
|  | 8 | * kind, whether express or implied. | 
|  | 9 | */ | 
|  | 10 |  | 
|  | 11 | /include/ "omap2.dtsi" | 
|  | 12 |  | 
|  | 13 | / { | 
|  | 14 | compatible = "ti,omap2430", "ti,omap2"; | 
|  | 15 |  | 
|  | 16 | ocp { | 
| Jon Hunter | 510c0ff | 2012-10-25 14:24:14 -0500 | [diff] [blame] | 17 | counter32k: counter@49020000 { | 
|  | 18 | compatible = "ti,omap-counter32k"; | 
|  | 19 | reg = <0x49020000 0x20>; | 
|  | 20 | ti,hwmods = "counter_32k"; | 
|  | 21 | }; | 
|  | 22 |  | 
| Tony Lindgren | 679e331 | 2012-09-10 10:34:51 -0700 | [diff] [blame] | 23 | omap2430_pmx: pinmux@49002030 { | 
|  | 24 | compatible = "ti,omap2430-padconf", "pinctrl-single"; | 
|  | 25 | reg = <0x49002030 0x0154>; | 
|  | 26 | #address-cells = <1>; | 
|  | 27 | #size-cells = <0>; | 
|  | 28 | pinctrl-single,register-width = <8>; | 
|  | 29 | pinctrl-single,function-mask = <0x3f>; | 
|  | 30 | }; | 
|  | 31 |  | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 32 | mcbsp1: mcbsp@48074000 { | 
|  | 33 | compatible = "ti,omap2430-mcbsp"; | 
|  | 34 | reg = <0x48074000 0xff>; | 
|  | 35 | reg-names = "mpu"; | 
|  | 36 | interrupts = <64>, /* OCP compliant interrupt */ | 
|  | 37 | <59>, /* TX interrupt */ | 
|  | 38 | <60>, /* RX interrupt */ | 
|  | 39 | <61>; /* RX overflow interrupt */ | 
|  | 40 | interrupt-names = "common", "tx", "rx", "rx_overflow"; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 41 | ti,buffer-size = <128>; | 
|  | 42 | ti,hwmods = "mcbsp1"; | 
|  | 43 | }; | 
|  | 44 |  | 
|  | 45 | mcbsp2: mcbsp@48076000 { | 
|  | 46 | compatible = "ti,omap2430-mcbsp"; | 
|  | 47 | reg = <0x48076000 0xff>; | 
|  | 48 | reg-names = "mpu"; | 
|  | 49 | interrupts = <16>, /* OCP compliant interrupt */ | 
|  | 50 | <62>, /* TX interrupt */ | 
|  | 51 | <63>; /* RX interrupt */ | 
|  | 52 | interrupt-names = "common", "tx", "rx"; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 53 | ti,buffer-size = <128>; | 
|  | 54 | ti,hwmods = "mcbsp2"; | 
|  | 55 | }; | 
|  | 56 |  | 
|  | 57 | mcbsp3: mcbsp@4808c000 { | 
|  | 58 | compatible = "ti,omap2430-mcbsp"; | 
|  | 59 | reg = <0x4808c000 0xff>; | 
|  | 60 | reg-names = "mpu"; | 
|  | 61 | interrupts = <17>, /* OCP compliant interrupt */ | 
|  | 62 | <89>, /* TX interrupt */ | 
|  | 63 | <90>; /* RX interrupt */ | 
|  | 64 | interrupt-names = "common", "tx", "rx"; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 65 | ti,buffer-size = <128>; | 
|  | 66 | ti,hwmods = "mcbsp3"; | 
|  | 67 | }; | 
|  | 68 |  | 
|  | 69 | mcbsp4: mcbsp@4808e000 { | 
|  | 70 | compatible = "ti,omap2430-mcbsp"; | 
|  | 71 | reg = <0x4808e000 0xff>; | 
|  | 72 | reg-names = "mpu"; | 
|  | 73 | interrupts = <18>, /* OCP compliant interrupt */ | 
|  | 74 | <54>, /* TX interrupt */ | 
|  | 75 | <55>; /* RX interrupt */ | 
|  | 76 | interrupt-names = "common", "tx", "rx"; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 77 | ti,buffer-size = <128>; | 
|  | 78 | ti,hwmods = "mcbsp4"; | 
|  | 79 | }; | 
|  | 80 |  | 
|  | 81 | mcbsp5: mcbsp@48096000 { | 
|  | 82 | compatible = "ti,omap2430-mcbsp"; | 
|  | 83 | reg = <0x48096000 0xff>; | 
|  | 84 | reg-names = "mpu"; | 
|  | 85 | interrupts = <19>, /* OCP compliant interrupt */ | 
|  | 86 | <81>, /* TX interrupt */ | 
|  | 87 | <82>; /* RX interrupt */ | 
|  | 88 | interrupt-names = "common", "tx", "rx"; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 89 | ti,buffer-size = <128>; | 
|  | 90 | ti,hwmods = "mcbsp5"; | 
|  | 91 | }; | 
| Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 92 |  | 
|  | 93 | timer1: timer@49018000 { | 
|  | 94 | compatible = "ti,omap2-timer"; | 
|  | 95 | reg = <0x49018000 0x400>; | 
|  | 96 | interrupts = <37>; | 
|  | 97 | ti,hwmods = "timer1"; | 
|  | 98 | ti,timer-alwon; | 
|  | 99 | }; | 
| Peter Ujfalusi | 3f187f8 | 2012-07-26 17:01:32 +0300 | [diff] [blame] | 100 | }; | 
|  | 101 | }; |