2 * sh7372 processor support
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2008 Yoshihiro Shimoda
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/interrupt.h>
23 #include <linux/irq.h>
24 #include <linux/platform_device.h>
25 #include <linux/uio_driver.h>
26 #include <linux/delay.h>
27 #include <linux/input.h>
29 #include <linux/serial_sci.h>
30 #include <linux/sh_dma.h>
31 #include <linux/sh_intc.h>
32 #include <linux/sh_timer.h>
33 #include <linux/pm_domain.h>
34 #include <mach/hardware.h>
35 #include <mach/sh7372.h>
36 #include <asm/mach-types.h>
37 #include <asm/mach/arch.h>
40 static struct plat_sci_port scif0_platform_data
= {
41 .mapbase
= 0xe6c40000,
42 .flags
= UPF_BOOT_AUTOCONF
,
43 .scscr
= SCSCR_RE
| SCSCR_TE
,
44 .scbrr_algo_id
= SCBRR_ALGO_4
,
46 .irqs
= { evt2irq(0x0c00), evt2irq(0x0c00),
47 evt2irq(0x0c00), evt2irq(0x0c00) },
50 static struct platform_device scif0_device
= {
54 .platform_data
= &scif0_platform_data
,
59 static struct plat_sci_port scif1_platform_data
= {
60 .mapbase
= 0xe6c50000,
61 .flags
= UPF_BOOT_AUTOCONF
,
62 .scscr
= SCSCR_RE
| SCSCR_TE
,
63 .scbrr_algo_id
= SCBRR_ALGO_4
,
65 .irqs
= { evt2irq(0x0c20), evt2irq(0x0c20),
66 evt2irq(0x0c20), evt2irq(0x0c20) },
69 static struct platform_device scif1_device
= {
73 .platform_data
= &scif1_platform_data
,
78 static struct plat_sci_port scif2_platform_data
= {
79 .mapbase
= 0xe6c60000,
80 .flags
= UPF_BOOT_AUTOCONF
,
81 .scscr
= SCSCR_RE
| SCSCR_TE
,
82 .scbrr_algo_id
= SCBRR_ALGO_4
,
84 .irqs
= { evt2irq(0x0c40), evt2irq(0x0c40),
85 evt2irq(0x0c40), evt2irq(0x0c40) },
88 static struct platform_device scif2_device
= {
92 .platform_data
= &scif2_platform_data
,
97 static struct plat_sci_port scif3_platform_data
= {
98 .mapbase
= 0xe6c70000,
99 .flags
= UPF_BOOT_AUTOCONF
,
100 .scscr
= SCSCR_RE
| SCSCR_TE
,
101 .scbrr_algo_id
= SCBRR_ALGO_4
,
103 .irqs
= { evt2irq(0x0c60), evt2irq(0x0c60),
104 evt2irq(0x0c60), evt2irq(0x0c60) },
107 static struct platform_device scif3_device
= {
111 .platform_data
= &scif3_platform_data
,
116 static struct plat_sci_port scif4_platform_data
= {
117 .mapbase
= 0xe6c80000,
118 .flags
= UPF_BOOT_AUTOCONF
,
119 .scscr
= SCSCR_RE
| SCSCR_TE
,
120 .scbrr_algo_id
= SCBRR_ALGO_4
,
122 .irqs
= { evt2irq(0x0d20), evt2irq(0x0d20),
123 evt2irq(0x0d20), evt2irq(0x0d20) },
126 static struct platform_device scif4_device
= {
130 .platform_data
= &scif4_platform_data
,
135 static struct plat_sci_port scif5_platform_data
= {
136 .mapbase
= 0xe6cb0000,
137 .flags
= UPF_BOOT_AUTOCONF
,
138 .scscr
= SCSCR_RE
| SCSCR_TE
,
139 .scbrr_algo_id
= SCBRR_ALGO_4
,
141 .irqs
= { evt2irq(0x0d40), evt2irq(0x0d40),
142 evt2irq(0x0d40), evt2irq(0x0d40) },
145 static struct platform_device scif5_device
= {
149 .platform_data
= &scif5_platform_data
,
154 static struct plat_sci_port scif6_platform_data
= {
155 .mapbase
= 0xe6c30000,
156 .flags
= UPF_BOOT_AUTOCONF
,
157 .scscr
= SCSCR_RE
| SCSCR_TE
,
158 .scbrr_algo_id
= SCBRR_ALGO_4
,
160 .irqs
= { evt2irq(0x0d60), evt2irq(0x0d60),
161 evt2irq(0x0d60), evt2irq(0x0d60) },
164 static struct platform_device scif6_device
= {
168 .platform_data
= &scif6_platform_data
,
173 static struct sh_timer_config cmt2_platform_data
= {
175 .channel_offset
= 0x40,
177 .clockevent_rating
= 125,
178 .clocksource_rating
= 125,
181 static struct resource cmt2_resources
[] = {
186 .flags
= IORESOURCE_MEM
,
189 .start
= evt2irq(0x0b80), /* CMT2 */
190 .flags
= IORESOURCE_IRQ
,
194 static struct platform_device cmt2_device
= {
198 .platform_data
= &cmt2_platform_data
,
200 .resource
= cmt2_resources
,
201 .num_resources
= ARRAY_SIZE(cmt2_resources
),
205 static struct sh_timer_config tmu00_platform_data
= {
207 .channel_offset
= 0x4,
209 .clockevent_rating
= 200,
212 static struct resource tmu00_resources
[] = {
217 .flags
= IORESOURCE_MEM
,
220 .start
= intcs_evt2irq(0xe80), /* TMU_TUNI0 */
221 .flags
= IORESOURCE_IRQ
,
225 static struct platform_device tmu00_device
= {
229 .platform_data
= &tmu00_platform_data
,
231 .resource
= tmu00_resources
,
232 .num_resources
= ARRAY_SIZE(tmu00_resources
),
235 static struct sh_timer_config tmu01_platform_data
= {
237 .channel_offset
= 0x10,
239 .clocksource_rating
= 200,
242 static struct resource tmu01_resources
[] = {
247 .flags
= IORESOURCE_MEM
,
250 .start
= intcs_evt2irq(0xea0), /* TMU_TUNI1 */
251 .flags
= IORESOURCE_IRQ
,
255 static struct platform_device tmu01_device
= {
259 .platform_data
= &tmu01_platform_data
,
261 .resource
= tmu01_resources
,
262 .num_resources
= ARRAY_SIZE(tmu01_resources
),
266 static struct resource iic0_resources
[] = {
270 .end
= 0xFFF20425 - 1,
271 .flags
= IORESOURCE_MEM
,
274 .start
= intcs_evt2irq(0xe00), /* IIC0_ALI0 */
275 .end
= intcs_evt2irq(0xe60), /* IIC0_DTEI0 */
276 .flags
= IORESOURCE_IRQ
,
280 static struct platform_device iic0_device
= {
281 .name
= "i2c-sh_mobile",
282 .id
= 0, /* "i2c0" clock */
283 .num_resources
= ARRAY_SIZE(iic0_resources
),
284 .resource
= iic0_resources
,
287 static struct resource iic1_resources
[] = {
291 .end
= 0xE6C20425 - 1,
292 .flags
= IORESOURCE_MEM
,
295 .start
= evt2irq(0x780), /* IIC1_ALI1 */
296 .end
= evt2irq(0x7e0), /* IIC1_DTEI1 */
297 .flags
= IORESOURCE_IRQ
,
301 static struct platform_device iic1_device
= {
302 .name
= "i2c-sh_mobile",
303 .id
= 1, /* "i2c1" clock */
304 .num_resources
= ARRAY_SIZE(iic1_resources
),
305 .resource
= iic1_resources
,
309 /* Transmit sizes and respective CHCR register values */
320 /* log2(size / 8) - used to calculate number of transfers */
322 [XMIT_SZ_8BIT] = 0, \
323 [XMIT_SZ_16BIT] = 1, \
324 [XMIT_SZ_32BIT] = 2, \
325 [XMIT_SZ_64BIT] = 3, \
326 [XMIT_SZ_128BIT] = 4, \
327 [XMIT_SZ_256BIT] = 5, \
328 [XMIT_SZ_512BIT] = 6, \
331 #define TS_INDEX2VAL(i) ((((i) & 3) << 3) | \
332 (((i) & 0xc) << (20 - 2)))
334 static const struct sh_dmae_slave_config sh7372_dmae_slaves
[] = {
336 .slave_id
= SHDMA_SLAVE_SCIF0_TX
,
338 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
341 .slave_id
= SHDMA_SLAVE_SCIF0_RX
,
343 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
346 .slave_id
= SHDMA_SLAVE_SCIF1_TX
,
348 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
351 .slave_id
= SHDMA_SLAVE_SCIF1_RX
,
353 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
356 .slave_id
= SHDMA_SLAVE_SCIF2_TX
,
358 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
361 .slave_id
= SHDMA_SLAVE_SCIF2_RX
,
363 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
366 .slave_id
= SHDMA_SLAVE_SCIF3_TX
,
368 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
371 .slave_id
= SHDMA_SLAVE_SCIF3_RX
,
373 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
376 .slave_id
= SHDMA_SLAVE_SCIF4_TX
,
378 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
381 .slave_id
= SHDMA_SLAVE_SCIF4_RX
,
383 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
386 .slave_id
= SHDMA_SLAVE_SCIF5_TX
,
388 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
391 .slave_id
= SHDMA_SLAVE_SCIF5_RX
,
393 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
396 .slave_id
= SHDMA_SLAVE_SCIF6_TX
,
398 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
401 .slave_id
= SHDMA_SLAVE_SCIF6_RX
,
403 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_8BIT
),
406 .slave_id
= SHDMA_SLAVE_SDHI0_TX
,
408 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
411 .slave_id
= SHDMA_SLAVE_SDHI0_RX
,
413 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
416 .slave_id
= SHDMA_SLAVE_SDHI1_TX
,
418 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
421 .slave_id
= SHDMA_SLAVE_SDHI1_RX
,
423 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
426 .slave_id
= SHDMA_SLAVE_SDHI2_TX
,
428 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
431 .slave_id
= SHDMA_SLAVE_SDHI2_RX
,
433 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_16BIT
),
436 .slave_id
= SHDMA_SLAVE_MMCIF_TX
,
438 .chcr
= DM_FIX
| SM_INC
| 0x800 | TS_INDEX2VAL(XMIT_SZ_32BIT
),
441 .slave_id
= SHDMA_SLAVE_MMCIF_RX
,
443 .chcr
= DM_INC
| SM_FIX
| 0x800 | TS_INDEX2VAL(XMIT_SZ_32BIT
),
448 static const struct sh_dmae_channel sh7372_dmae_channels
[] = {
476 static const unsigned int ts_shift
[] = TS_SHIFT
;
478 static struct sh_dmae_pdata dma_platform_data
= {
479 .slave
= sh7372_dmae_slaves
,
480 .slave_num
= ARRAY_SIZE(sh7372_dmae_slaves
),
481 .channel
= sh7372_dmae_channels
,
482 .channel_num
= ARRAY_SIZE(sh7372_dmae_channels
),
485 .ts_high_shift
= (20 - 2), /* 2 bits for shifted low TS */
486 .ts_high_mask
= 0x00300000,
487 .ts_shift
= ts_shift
,
488 .ts_shift_num
= ARRAY_SIZE(ts_shift
),
489 .dmaor_init
= DMAOR_DME
,
492 /* Resource order important! */
493 static struct resource sh7372_dmae0_resources
[] = {
495 /* Channel registers and DMAOR */
498 .flags
= IORESOURCE_MEM
,
504 .flags
= IORESOURCE_MEM
,
508 .start
= evt2irq(0x20c0),
509 .end
= evt2irq(0x20c0),
510 .flags
= IORESOURCE_IRQ
,
513 /* IRQ for channels 0-5 */
514 .start
= evt2irq(0x2000),
515 .end
= evt2irq(0x20a0),
516 .flags
= IORESOURCE_IRQ
,
520 /* Resource order important! */
521 static struct resource sh7372_dmae1_resources
[] = {
523 /* Channel registers and DMAOR */
526 .flags
= IORESOURCE_MEM
,
532 .flags
= IORESOURCE_MEM
,
536 .start
= evt2irq(0x21c0),
537 .end
= evt2irq(0x21c0),
538 .flags
= IORESOURCE_IRQ
,
541 /* IRQ for channels 0-5 */
542 .start
= evt2irq(0x2100),
543 .end
= evt2irq(0x21a0),
544 .flags
= IORESOURCE_IRQ
,
548 /* Resource order important! */
549 static struct resource sh7372_dmae2_resources
[] = {
551 /* Channel registers and DMAOR */
554 .flags
= IORESOURCE_MEM
,
560 .flags
= IORESOURCE_MEM
,
564 .start
= evt2irq(0x22c0),
565 .end
= evt2irq(0x22c0),
566 .flags
= IORESOURCE_IRQ
,
569 /* IRQ for channels 0-5 */
570 .start
= evt2irq(0x2200),
571 .end
= evt2irq(0x22a0),
572 .flags
= IORESOURCE_IRQ
,
576 static struct platform_device dma0_device
= {
577 .name
= "sh-dma-engine",
579 .resource
= sh7372_dmae0_resources
,
580 .num_resources
= ARRAY_SIZE(sh7372_dmae0_resources
),
582 .platform_data
= &dma_platform_data
,
586 static struct platform_device dma1_device
= {
587 .name
= "sh-dma-engine",
589 .resource
= sh7372_dmae1_resources
,
590 .num_resources
= ARRAY_SIZE(sh7372_dmae1_resources
),
592 .platform_data
= &dma_platform_data
,
596 static struct platform_device dma2_device
= {
597 .name
= "sh-dma-engine",
599 .resource
= sh7372_dmae2_resources
,
600 .num_resources
= ARRAY_SIZE(sh7372_dmae2_resources
),
602 .platform_data
= &dma_platform_data
,
610 unsigned int usbts_shift
[] = {3, 4, 5};
618 #define USBTS_INDEX2VAL(i) (((i) & 3) << 6)
620 static const struct sh_dmae_channel sh7372_usb_dmae_channels
[] = {
629 static const struct sh_dmae_slave_config sh7372_usb_dmae0_slaves
[] = {
631 .slave_id
= SHDMA_SLAVE_USB0_TX
,
632 .chcr
= USBTS_INDEX2VAL(XMIT_SZ_8BYTE
),
634 .slave_id
= SHDMA_SLAVE_USB0_RX
,
635 .chcr
= USBTS_INDEX2VAL(XMIT_SZ_8BYTE
),
639 static struct sh_dmae_pdata usb_dma0_platform_data
= {
640 .slave
= sh7372_usb_dmae0_slaves
,
641 .slave_num
= ARRAY_SIZE(sh7372_usb_dmae0_slaves
),
642 .channel
= sh7372_usb_dmae_channels
,
643 .channel_num
= ARRAY_SIZE(sh7372_usb_dmae_channels
),
648 .ts_shift
= usbts_shift
,
649 .ts_shift_num
= ARRAY_SIZE(usbts_shift
),
650 .dmaor_init
= DMAOR_DME
,
652 .chcr_ie_bit
= 1 << 5,
658 static struct resource sh7372_usb_dmae0_resources
[] = {
660 /* Channel registers and DMAOR */
662 .end
= 0xe68a0064 - 1,
663 .flags
= IORESOURCE_MEM
,
668 .end
= 0xe68a0014 - 1,
669 .flags
= IORESOURCE_MEM
,
672 /* IRQ for channels */
673 .start
= evt2irq(0x0a00),
674 .end
= evt2irq(0x0a00),
675 .flags
= IORESOURCE_IRQ
,
679 static struct platform_device usb_dma0_device
= {
680 .name
= "sh-dma-engine",
682 .resource
= sh7372_usb_dmae0_resources
,
683 .num_resources
= ARRAY_SIZE(sh7372_usb_dmae0_resources
),
685 .platform_data
= &usb_dma0_platform_data
,
690 static const struct sh_dmae_slave_config sh7372_usb_dmae1_slaves
[] = {
692 .slave_id
= SHDMA_SLAVE_USB1_TX
,
693 .chcr
= USBTS_INDEX2VAL(XMIT_SZ_8BYTE
),
695 .slave_id
= SHDMA_SLAVE_USB1_RX
,
696 .chcr
= USBTS_INDEX2VAL(XMIT_SZ_8BYTE
),
700 static struct sh_dmae_pdata usb_dma1_platform_data
= {
701 .slave
= sh7372_usb_dmae1_slaves
,
702 .slave_num
= ARRAY_SIZE(sh7372_usb_dmae1_slaves
),
703 .channel
= sh7372_usb_dmae_channels
,
704 .channel_num
= ARRAY_SIZE(sh7372_usb_dmae_channels
),
709 .ts_shift
= usbts_shift
,
710 .ts_shift_num
= ARRAY_SIZE(usbts_shift
),
711 .dmaor_init
= DMAOR_DME
,
713 .chcr_ie_bit
= 1 << 5,
719 static struct resource sh7372_usb_dmae1_resources
[] = {
721 /* Channel registers and DMAOR */
723 .end
= 0xe68c0064 - 1,
724 .flags
= IORESOURCE_MEM
,
729 .end
= 0xe68c0014 - 1,
730 .flags
= IORESOURCE_MEM
,
733 /* IRQ for channels */
734 .start
= evt2irq(0x1d00),
735 .end
= evt2irq(0x1d00),
736 .flags
= IORESOURCE_IRQ
,
740 static struct platform_device usb_dma1_device
= {
741 .name
= "sh-dma-engine",
743 .resource
= sh7372_usb_dmae1_resources
,
744 .num_resources
= ARRAY_SIZE(sh7372_usb_dmae1_resources
),
746 .platform_data
= &usb_dma1_platform_data
,
751 static struct uio_info vpu_platform_data
= {
754 .irq
= intcs_evt2irq(0x980),
757 static struct resource vpu_resources
[] = {
762 .flags
= IORESOURCE_MEM
,
766 static struct platform_device vpu_device
= {
767 .name
= "uio_pdrv_genirq",
770 .platform_data
= &vpu_platform_data
,
772 .resource
= vpu_resources
,
773 .num_resources
= ARRAY_SIZE(vpu_resources
),
777 static struct uio_info veu0_platform_data
= {
780 .irq
= intcs_evt2irq(0x700),
783 static struct resource veu0_resources
[] = {
788 .flags
= IORESOURCE_MEM
,
792 static struct platform_device veu0_device
= {
793 .name
= "uio_pdrv_genirq",
796 .platform_data
= &veu0_platform_data
,
798 .resource
= veu0_resources
,
799 .num_resources
= ARRAY_SIZE(veu0_resources
),
803 static struct uio_info veu1_platform_data
= {
806 .irq
= intcs_evt2irq(0x720),
809 static struct resource veu1_resources
[] = {
814 .flags
= IORESOURCE_MEM
,
818 static struct platform_device veu1_device
= {
819 .name
= "uio_pdrv_genirq",
822 .platform_data
= &veu1_platform_data
,
824 .resource
= veu1_resources
,
825 .num_resources
= ARRAY_SIZE(veu1_resources
),
829 static struct uio_info veu2_platform_data
= {
832 .irq
= intcs_evt2irq(0x740),
835 static struct resource veu2_resources
[] = {
840 .flags
= IORESOURCE_MEM
,
844 static struct platform_device veu2_device
= {
845 .name
= "uio_pdrv_genirq",
848 .platform_data
= &veu2_platform_data
,
850 .resource
= veu2_resources
,
851 .num_resources
= ARRAY_SIZE(veu2_resources
),
855 static struct uio_info veu3_platform_data
= {
858 .irq
= intcs_evt2irq(0x760),
861 static struct resource veu3_resources
[] = {
866 .flags
= IORESOURCE_MEM
,
870 static struct platform_device veu3_device
= {
871 .name
= "uio_pdrv_genirq",
874 .platform_data
= &veu3_platform_data
,
876 .resource
= veu3_resources
,
877 .num_resources
= ARRAY_SIZE(veu3_resources
),
881 static struct uio_info jpu_platform_data
= {
884 .irq
= intcs_evt2irq(0x560),
887 static struct resource jpu_resources
[] = {
892 .flags
= IORESOURCE_MEM
,
896 static struct platform_device jpu_device
= {
897 .name
= "uio_pdrv_genirq",
900 .platform_data
= &jpu_platform_data
,
902 .resource
= jpu_resources
,
903 .num_resources
= ARRAY_SIZE(jpu_resources
),
907 static struct uio_info spu0_platform_data
= {
910 .irq
= evt2irq(0x1800),
913 static struct resource spu0_resources
[] = {
918 .flags
= IORESOURCE_MEM
,
922 static struct platform_device spu0_device
= {
923 .name
= "uio_pdrv_genirq",
926 .platform_data
= &spu0_platform_data
,
928 .resource
= spu0_resources
,
929 .num_resources
= ARRAY_SIZE(spu0_resources
),
933 static struct uio_info spu1_platform_data
= {
936 .irq
= evt2irq(0x1820),
939 static struct resource spu1_resources
[] = {
944 .flags
= IORESOURCE_MEM
,
948 static struct platform_device spu1_device
= {
949 .name
= "uio_pdrv_genirq",
952 .platform_data
= &spu1_platform_data
,
954 .resource
= spu1_resources
,
955 .num_resources
= ARRAY_SIZE(spu1_resources
),
958 static struct platform_device
*sh7372_early_devices
[] __initdata
= {
971 static struct platform_device
*sh7372_late_devices
[] __initdata
= {
989 void __init
sh7372_add_standard_devices(void)
991 sh7372_init_pm_domain(&sh7372_a4lc
);
992 sh7372_init_pm_domain(&sh7372_a4mp
);
993 sh7372_init_pm_domain(&sh7372_d4
);
994 sh7372_init_pm_domain(&sh7372_a3rv
);
995 sh7372_init_pm_domain(&sh7372_a3ri
);
996 sh7372_init_pm_domain(&sh7372_a3sg
);
998 sh7372_pm_add_subdomain(&sh7372_a4lc
, &sh7372_a3rv
);
1000 platform_add_devices(sh7372_early_devices
,
1001 ARRAY_SIZE(sh7372_early_devices
));
1003 platform_add_devices(sh7372_late_devices
,
1004 ARRAY_SIZE(sh7372_late_devices
));
1006 sh7372_add_device_to_domain(&sh7372_a3rv
, &vpu_device
);
1007 sh7372_add_device_to_domain(&sh7372_a4mp
, &spu0_device
);
1008 sh7372_add_device_to_domain(&sh7372_a4mp
, &spu1_device
);
1011 void __init
sh7372_add_early_devices(void)
1013 early_platform_add_devices(sh7372_early_devices
,
1014 ARRAY_SIZE(sh7372_early_devices
));