2 * arch/arm/plat-orion/common.c
4 * Marvell Orion SoC common setup code used by multiple mach-/common.c
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/serial_8250.h>
16 #include <linux/ata_platform.h>
17 #include <linux/clk.h>
18 #include <linux/clkdev.h>
19 #include <linux/mv643xx_eth.h>
20 #include <linux/mv643xx_i2c.h>
22 #include <linux/platform_data/dma-mv_xor.h>
23 #include <linux/platform_data/usb-ehci-orion.h>
24 #include <mach/bridge-regs.h>
26 /* Create a clkdev entry for a given device/clk */
27 void __init
orion_clkdev_add(const char *con_id
, const char *dev_id
,
30 struct clk_lookup
*cl
;
32 cl
= clkdev_alloc(clk
, con_id
, dev_id
);
37 /* Create clkdev entries for all orion platforms except kirkwood.
38 Kirkwood has gated clocks for some of its peripherals, so creates
39 its own clkdev entries. For all the other orion devices, create
40 clkdev entries to the tclk. */
41 void __init
orion_clkdev_init(struct clk
*tclk
)
43 orion_clkdev_add(NULL
, "orion_spi.0", tclk
);
44 orion_clkdev_add(NULL
, "orion_spi.1", tclk
);
45 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".0", tclk
);
46 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".1", tclk
);
47 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".2", tclk
);
48 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".3", tclk
);
49 orion_clkdev_add(NULL
, "orion_wdt", tclk
);
50 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".0", tclk
);
53 /* Fill in the resources structure and link it into the platform
54 device structure. There is always a memory region, and nearly
55 always an interrupt.*/
56 static void fill_resources(struct platform_device
*device
,
57 struct resource
*resources
,
58 resource_size_t mapbase
,
62 device
->resource
= resources
;
63 device
->num_resources
= 1;
64 resources
[0].flags
= IORESOURCE_MEM
;
65 resources
[0].start
= mapbase
;
66 resources
[0].end
= mapbase
+ size
;
69 device
->num_resources
++;
70 resources
[1].flags
= IORESOURCE_IRQ
;
71 resources
[1].start
= irq
;
72 resources
[1].end
= irq
;
76 /*****************************************************************************
78 ****************************************************************************/
79 static unsigned long __init
uart_get_clk_rate(struct clk
*clk
)
81 clk_prepare_enable(clk
);
82 return clk_get_rate(clk
);
85 static void __init
uart_complete(
86 struct platform_device
*orion_uart
,
87 struct plat_serial8250_port
*data
,
88 struct resource
*resources
,
89 void __iomem
*membase
,
90 resource_size_t mapbase
,
94 data
->mapbase
= mapbase
;
95 data
->membase
= membase
;
97 data
->uartclk
= uart_get_clk_rate(clk
);
98 orion_uart
->dev
.platform_data
= data
;
100 fill_resources(orion_uart
, resources
, mapbase
, 0xff, irq
);
101 platform_device_register(orion_uart
);
104 /*****************************************************************************
106 ****************************************************************************/
107 static struct plat_serial8250_port orion_uart0_data
[] = {
109 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
116 static struct resource orion_uart0_resources
[2];
118 static struct platform_device orion_uart0
= {
119 .name
= "serial8250",
120 .id
= PLAT8250_DEV_PLATFORM
,
123 void __init
orion_uart0_init(void __iomem
*membase
,
124 resource_size_t mapbase
,
128 uart_complete(&orion_uart0
, orion_uart0_data
, orion_uart0_resources
,
129 membase
, mapbase
, irq
, clk
);
132 /*****************************************************************************
134 ****************************************************************************/
135 static struct plat_serial8250_port orion_uart1_data
[] = {
137 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
144 static struct resource orion_uart1_resources
[2];
146 static struct platform_device orion_uart1
= {
147 .name
= "serial8250",
148 .id
= PLAT8250_DEV_PLATFORM1
,
151 void __init
orion_uart1_init(void __iomem
*membase
,
152 resource_size_t mapbase
,
156 uart_complete(&orion_uart1
, orion_uart1_data
, orion_uart1_resources
,
157 membase
, mapbase
, irq
, clk
);
160 /*****************************************************************************
162 ****************************************************************************/
163 static struct plat_serial8250_port orion_uart2_data
[] = {
165 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
172 static struct resource orion_uart2_resources
[2];
174 static struct platform_device orion_uart2
= {
175 .name
= "serial8250",
176 .id
= PLAT8250_DEV_PLATFORM2
,
179 void __init
orion_uart2_init(void __iomem
*membase
,
180 resource_size_t mapbase
,
184 uart_complete(&orion_uart2
, orion_uart2_data
, orion_uart2_resources
,
185 membase
, mapbase
, irq
, clk
);
188 /*****************************************************************************
190 ****************************************************************************/
191 static struct plat_serial8250_port orion_uart3_data
[] = {
193 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
200 static struct resource orion_uart3_resources
[2];
202 static struct platform_device orion_uart3
= {
203 .name
= "serial8250",
207 void __init
orion_uart3_init(void __iomem
*membase
,
208 resource_size_t mapbase
,
212 uart_complete(&orion_uart3
, orion_uart3_data
, orion_uart3_resources
,
213 membase
, mapbase
, irq
, clk
);
216 /*****************************************************************************
218 ****************************************************************************/
219 static struct resource orion_rtc_resource
[2];
221 void __init
orion_rtc_init(unsigned long mapbase
,
224 orion_rtc_resource
[0].start
= mapbase
;
225 orion_rtc_resource
[0].end
= mapbase
+ SZ_32
- 1;
226 orion_rtc_resource
[0].flags
= IORESOURCE_MEM
;
227 orion_rtc_resource
[1].start
= irq
;
228 orion_rtc_resource
[1].end
= irq
;
229 orion_rtc_resource
[1].flags
= IORESOURCE_IRQ
;
231 platform_device_register_simple("rtc-mv", -1, orion_rtc_resource
, 2);
234 /*****************************************************************************
236 ****************************************************************************/
237 static __init
void ge_complete(
238 struct mv643xx_eth_shared_platform_data
*orion_ge_shared_data
,
239 struct resource
*orion_ge_resource
, unsigned long irq
,
240 struct platform_device
*orion_ge_shared
,
241 struct platform_device
*orion_ge_mvmdio
,
242 struct mv643xx_eth_platform_data
*eth_data
,
243 struct platform_device
*orion_ge
)
245 orion_ge_resource
->start
= irq
;
246 orion_ge_resource
->end
= irq
;
247 eth_data
->shared
= orion_ge_shared
;
248 orion_ge
->dev
.platform_data
= eth_data
;
250 platform_device_register(orion_ge_shared
);
252 platform_device_register(orion_ge_mvmdio
);
253 platform_device_register(orion_ge
);
256 /*****************************************************************************
258 ****************************************************************************/
259 struct mv643xx_eth_shared_platform_data orion_ge00_shared_data
;
261 static struct resource orion_ge00_shared_resources
[] = {
267 static struct platform_device orion_ge00_shared
= {
268 .name
= MV643XX_ETH_SHARED_NAME
,
271 .platform_data
= &orion_ge00_shared_data
,
275 static struct resource orion_ge_mvmdio_resources
[] = {
277 .name
= "ge00 mvmdio base",
279 .name
= "ge00 mvmdio err irq",
283 static struct platform_device orion_ge_mvmdio
= {
284 .name
= "orion-mdio",
288 static struct resource orion_ge00_resources
[] = {
291 .flags
= IORESOURCE_IRQ
,
295 static struct platform_device orion_ge00
= {
296 .name
= MV643XX_ETH_NAME
,
299 .resource
= orion_ge00_resources
,
301 .coherent_dma_mask
= DMA_BIT_MASK(32),
305 void __init
orion_ge00_init(struct mv643xx_eth_platform_data
*eth_data
,
306 unsigned long mapbase
,
308 unsigned long irq_err
,
309 unsigned int tx_csum_limit
)
311 fill_resources(&orion_ge00_shared
, orion_ge00_shared_resources
,
312 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
313 fill_resources(&orion_ge_mvmdio
, orion_ge_mvmdio_resources
,
314 mapbase
+ 0x2004, 0x84 - 1, irq_err
);
315 orion_ge00_shared_data
.tx_csum_limit
= tx_csum_limit
;
316 ge_complete(&orion_ge00_shared_data
,
317 orion_ge00_resources
, irq
, &orion_ge00_shared
,
319 eth_data
, &orion_ge00
);
322 /*****************************************************************************
324 ****************************************************************************/
325 struct mv643xx_eth_shared_platform_data orion_ge01_shared_data
;
327 static struct resource orion_ge01_shared_resources
[] = {
333 static struct platform_device orion_ge01_shared
= {
334 .name
= MV643XX_ETH_SHARED_NAME
,
337 .platform_data
= &orion_ge01_shared_data
,
341 static struct resource orion_ge01_resources
[] = {
344 .flags
= IORESOURCE_IRQ
,
348 static struct platform_device orion_ge01
= {
349 .name
= MV643XX_ETH_NAME
,
352 .resource
= orion_ge01_resources
,
354 .coherent_dma_mask
= DMA_BIT_MASK(32),
358 void __init
orion_ge01_init(struct mv643xx_eth_platform_data
*eth_data
,
359 unsigned long mapbase
,
361 unsigned long irq_err
,
362 unsigned int tx_csum_limit
)
364 fill_resources(&orion_ge01_shared
, orion_ge01_shared_resources
,
365 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
366 orion_ge01_shared_data
.tx_csum_limit
= tx_csum_limit
;
367 ge_complete(&orion_ge01_shared_data
,
368 orion_ge01_resources
, irq
, &orion_ge01_shared
,
370 eth_data
, &orion_ge01
);
373 /*****************************************************************************
375 ****************************************************************************/
376 struct mv643xx_eth_shared_platform_data orion_ge10_shared_data
;
378 static struct resource orion_ge10_shared_resources
[] = {
384 static struct platform_device orion_ge10_shared
= {
385 .name
= MV643XX_ETH_SHARED_NAME
,
388 .platform_data
= &orion_ge10_shared_data
,
392 static struct resource orion_ge10_resources
[] = {
395 .flags
= IORESOURCE_IRQ
,
399 static struct platform_device orion_ge10
= {
400 .name
= MV643XX_ETH_NAME
,
403 .resource
= orion_ge10_resources
,
405 .coherent_dma_mask
= DMA_BIT_MASK(32),
409 void __init
orion_ge10_init(struct mv643xx_eth_platform_data
*eth_data
,
410 unsigned long mapbase
,
412 unsigned long irq_err
)
414 fill_resources(&orion_ge10_shared
, orion_ge10_shared_resources
,
415 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
416 ge_complete(&orion_ge10_shared_data
,
417 orion_ge10_resources
, irq
, &orion_ge10_shared
,
419 eth_data
, &orion_ge10
);
422 /*****************************************************************************
424 ****************************************************************************/
425 struct mv643xx_eth_shared_platform_data orion_ge11_shared_data
;
427 static struct resource orion_ge11_shared_resources
[] = {
433 static struct platform_device orion_ge11_shared
= {
434 .name
= MV643XX_ETH_SHARED_NAME
,
437 .platform_data
= &orion_ge11_shared_data
,
441 static struct resource orion_ge11_resources
[] = {
444 .flags
= IORESOURCE_IRQ
,
448 static struct platform_device orion_ge11
= {
449 .name
= MV643XX_ETH_NAME
,
452 .resource
= orion_ge11_resources
,
454 .coherent_dma_mask
= DMA_BIT_MASK(32),
458 void __init
orion_ge11_init(struct mv643xx_eth_platform_data
*eth_data
,
459 unsigned long mapbase
,
461 unsigned long irq_err
)
463 fill_resources(&orion_ge11_shared
, orion_ge11_shared_resources
,
464 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
465 ge_complete(&orion_ge11_shared_data
,
466 orion_ge11_resources
, irq
, &orion_ge11_shared
,
468 eth_data
, &orion_ge11
);
471 /*****************************************************************************
473 ****************************************************************************/
474 static struct resource orion_switch_resources
[] = {
478 .flags
= IORESOURCE_IRQ
,
482 static struct platform_device orion_switch_device
= {
486 .resource
= orion_switch_resources
,
489 void __init
orion_ge00_switch_init(struct dsa_platform_data
*d
, int irq
)
494 orion_switch_resources
[0].start
= irq
;
495 orion_switch_resources
[0].end
= irq
;
496 orion_switch_device
.num_resources
= 1;
499 d
->netdev
= &orion_ge00
.dev
;
500 for (i
= 0; i
< d
->nr_chips
; i
++)
501 d
->chip
[i
].mii_bus
= &orion_ge00_shared
.dev
;
502 orion_switch_device
.dev
.platform_data
= d
;
504 platform_device_register(&orion_switch_device
);
507 /*****************************************************************************
509 ****************************************************************************/
510 static struct mv64xxx_i2c_pdata orion_i2c_pdata
= {
512 .timeout
= 1000, /* Default timeout of 1 second */
515 static struct resource orion_i2c_resources
[2];
517 static struct platform_device orion_i2c
= {
518 .name
= MV64XXX_I2C_CTLR_NAME
,
521 .platform_data
= &orion_i2c_pdata
,
525 static struct mv64xxx_i2c_pdata orion_i2c_1_pdata
= {
527 .timeout
= 1000, /* Default timeout of 1 second */
530 static struct resource orion_i2c_1_resources
[2];
532 static struct platform_device orion_i2c_1
= {
533 .name
= MV64XXX_I2C_CTLR_NAME
,
536 .platform_data
= &orion_i2c_1_pdata
,
540 void __init
orion_i2c_init(unsigned long mapbase
,
542 unsigned long freq_m
)
544 orion_i2c_pdata
.freq_m
= freq_m
;
545 fill_resources(&orion_i2c
, orion_i2c_resources
, mapbase
,
547 platform_device_register(&orion_i2c
);
550 void __init
orion_i2c_1_init(unsigned long mapbase
,
552 unsigned long freq_m
)
554 orion_i2c_1_pdata
.freq_m
= freq_m
;
555 fill_resources(&orion_i2c_1
, orion_i2c_1_resources
, mapbase
,
557 platform_device_register(&orion_i2c_1
);
560 /*****************************************************************************
562 ****************************************************************************/
563 static struct resource orion_spi_resources
;
565 static struct platform_device orion_spi
= {
570 static struct resource orion_spi_1_resources
;
572 static struct platform_device orion_spi_1
= {
577 /* Note: The SPI silicon core does have interrupts. However the
578 * current Linux software driver does not use interrupts. */
580 void __init
orion_spi_init(unsigned long mapbase
)
582 fill_resources(&orion_spi
, &orion_spi_resources
,
583 mapbase
, SZ_512
- 1, NO_IRQ
);
584 platform_device_register(&orion_spi
);
587 void __init
orion_spi_1_init(unsigned long mapbase
)
589 fill_resources(&orion_spi_1
, &orion_spi_1_resources
,
590 mapbase
, SZ_512
- 1, NO_IRQ
);
591 platform_device_register(&orion_spi_1
);
594 /*****************************************************************************
596 ****************************************************************************/
597 static struct resource orion_wdt_resource
=
598 DEFINE_RES_MEM(TIMER_PHYS_BASE
, 0x28);
600 static struct platform_device orion_wdt_device
= {
604 .resource
= &orion_wdt_resource
,
607 void __init
orion_wdt_init(void)
609 platform_device_register(&orion_wdt_device
);
612 /*****************************************************************************
614 ****************************************************************************/
615 static u64 orion_xor_dmamask
= DMA_BIT_MASK(32);
617 /*****************************************************************************
619 ****************************************************************************/
620 static struct resource orion_xor0_shared_resources
[] = {
623 .flags
= IORESOURCE_MEM
,
625 .name
= "xor 0 high",
626 .flags
= IORESOURCE_MEM
,
628 .name
= "irq channel 0",
629 .flags
= IORESOURCE_IRQ
,
631 .name
= "irq channel 1",
632 .flags
= IORESOURCE_IRQ
,
636 static struct mv_xor_channel_data orion_xor0_channels_data
[2];
638 static struct mv_xor_platform_data orion_xor0_pdata
= {
639 .channels
= orion_xor0_channels_data
,
642 static struct platform_device orion_xor0_shared
= {
645 .num_resources
= ARRAY_SIZE(orion_xor0_shared_resources
),
646 .resource
= orion_xor0_shared_resources
,
648 .dma_mask
= &orion_xor_dmamask
,
649 .coherent_dma_mask
= DMA_BIT_MASK(64),
650 .platform_data
= &orion_xor0_pdata
,
654 void __init
orion_xor0_init(unsigned long mapbase_low
,
655 unsigned long mapbase_high
,
659 orion_xor0_shared_resources
[0].start
= mapbase_low
;
660 orion_xor0_shared_resources
[0].end
= mapbase_low
+ 0xff;
661 orion_xor0_shared_resources
[1].start
= mapbase_high
;
662 orion_xor0_shared_resources
[1].end
= mapbase_high
+ 0xff;
664 orion_xor0_shared_resources
[2].start
= irq_0
;
665 orion_xor0_shared_resources
[2].end
= irq_0
;
666 orion_xor0_shared_resources
[3].start
= irq_1
;
667 orion_xor0_shared_resources
[3].end
= irq_1
;
670 * two engines can't do memset simultaneously, this limitation
671 * satisfied by removing memset support from one of the engines.
673 dma_cap_set(DMA_MEMCPY
, orion_xor0_channels_data
[0].cap_mask
);
674 dma_cap_set(DMA_XOR
, orion_xor0_channels_data
[0].cap_mask
);
676 dma_cap_set(DMA_MEMSET
, orion_xor0_channels_data
[1].cap_mask
);
677 dma_cap_set(DMA_MEMCPY
, orion_xor0_channels_data
[1].cap_mask
);
678 dma_cap_set(DMA_XOR
, orion_xor0_channels_data
[1].cap_mask
);
680 platform_device_register(&orion_xor0_shared
);
683 /*****************************************************************************
685 ****************************************************************************/
686 static struct resource orion_xor1_shared_resources
[] = {
689 .flags
= IORESOURCE_MEM
,
691 .name
= "xor 1 high",
692 .flags
= IORESOURCE_MEM
,
694 .name
= "irq channel 0",
695 .flags
= IORESOURCE_IRQ
,
697 .name
= "irq channel 1",
698 .flags
= IORESOURCE_IRQ
,
702 static struct mv_xor_channel_data orion_xor1_channels_data
[2];
704 static struct mv_xor_platform_data orion_xor1_pdata
= {
705 .channels
= orion_xor1_channels_data
,
708 static struct platform_device orion_xor1_shared
= {
711 .num_resources
= ARRAY_SIZE(orion_xor1_shared_resources
),
712 .resource
= orion_xor1_shared_resources
,
714 .dma_mask
= &orion_xor_dmamask
,
715 .coherent_dma_mask
= DMA_BIT_MASK(64),
716 .platform_data
= &orion_xor1_pdata
,
720 void __init
orion_xor1_init(unsigned long mapbase_low
,
721 unsigned long mapbase_high
,
725 orion_xor1_shared_resources
[0].start
= mapbase_low
;
726 orion_xor1_shared_resources
[0].end
= mapbase_low
+ 0xff;
727 orion_xor1_shared_resources
[1].start
= mapbase_high
;
728 orion_xor1_shared_resources
[1].end
= mapbase_high
+ 0xff;
730 orion_xor1_shared_resources
[2].start
= irq_0
;
731 orion_xor1_shared_resources
[2].end
= irq_0
;
732 orion_xor1_shared_resources
[3].start
= irq_1
;
733 orion_xor1_shared_resources
[3].end
= irq_1
;
736 * two engines can't do memset simultaneously, this limitation
737 * satisfied by removing memset support from one of the engines.
739 dma_cap_set(DMA_MEMCPY
, orion_xor1_channels_data
[0].cap_mask
);
740 dma_cap_set(DMA_XOR
, orion_xor1_channels_data
[0].cap_mask
);
742 dma_cap_set(DMA_MEMSET
, orion_xor1_channels_data
[1].cap_mask
);
743 dma_cap_set(DMA_MEMCPY
, orion_xor1_channels_data
[1].cap_mask
);
744 dma_cap_set(DMA_XOR
, orion_xor1_channels_data
[1].cap_mask
);
746 platform_device_register(&orion_xor1_shared
);
749 /*****************************************************************************
751 ****************************************************************************/
752 static struct orion_ehci_data orion_ehci_data
;
753 static u64 ehci_dmamask
= DMA_BIT_MASK(32);
756 /*****************************************************************************
758 ****************************************************************************/
759 static struct resource orion_ehci_resources
[2];
761 static struct platform_device orion_ehci
= {
762 .name
= "orion-ehci",
765 .dma_mask
= &ehci_dmamask
,
766 .coherent_dma_mask
= DMA_BIT_MASK(32),
767 .platform_data
= &orion_ehci_data
,
771 void __init
orion_ehci_init(unsigned long mapbase
,
773 enum orion_ehci_phy_ver phy_version
)
775 orion_ehci_data
.phy_version
= phy_version
;
776 fill_resources(&orion_ehci
, orion_ehci_resources
, mapbase
, SZ_4K
- 1,
779 platform_device_register(&orion_ehci
);
782 /*****************************************************************************
784 ****************************************************************************/
785 static struct resource orion_ehci_1_resources
[2];
787 static struct platform_device orion_ehci_1
= {
788 .name
= "orion-ehci",
791 .dma_mask
= &ehci_dmamask
,
792 .coherent_dma_mask
= DMA_BIT_MASK(32),
793 .platform_data
= &orion_ehci_data
,
797 void __init
orion_ehci_1_init(unsigned long mapbase
,
800 fill_resources(&orion_ehci_1
, orion_ehci_1_resources
,
801 mapbase
, SZ_4K
- 1, irq
);
803 platform_device_register(&orion_ehci_1
);
806 /*****************************************************************************
808 ****************************************************************************/
809 static struct resource orion_ehci_2_resources
[2];
811 static struct platform_device orion_ehci_2
= {
812 .name
= "orion-ehci",
815 .dma_mask
= &ehci_dmamask
,
816 .coherent_dma_mask
= DMA_BIT_MASK(32),
817 .platform_data
= &orion_ehci_data
,
821 void __init
orion_ehci_2_init(unsigned long mapbase
,
824 fill_resources(&orion_ehci_2
, orion_ehci_2_resources
,
825 mapbase
, SZ_4K
- 1, irq
);
827 platform_device_register(&orion_ehci_2
);
830 /*****************************************************************************
832 ****************************************************************************/
833 static struct resource orion_sata_resources
[2] = {
841 static struct platform_device orion_sata
= {
845 .coherent_dma_mask
= DMA_BIT_MASK(32),
849 void __init
orion_sata_init(struct mv_sata_platform_data
*sata_data
,
850 unsigned long mapbase
,
853 orion_sata
.dev
.platform_data
= sata_data
;
854 fill_resources(&orion_sata
, orion_sata_resources
,
855 mapbase
, 0x5000 - 1, irq
);
857 platform_device_register(&orion_sata
);
860 /*****************************************************************************
861 * Cryptographic Engines and Security Accelerator (CESA)
862 ****************************************************************************/
863 static struct resource orion_crypto_resources
[] = {
867 .name
= "crypto interrupt",
870 .flags
= IORESOURCE_MEM
,
874 static struct platform_device orion_crypto
= {
879 void __init
orion_crypto_init(unsigned long mapbase
,
880 unsigned long srambase
,
881 unsigned long sram_size
,
884 fill_resources(&orion_crypto
, orion_crypto_resources
,
885 mapbase
, 0xffff, irq
);
886 orion_crypto
.num_resources
= 3;
887 orion_crypto_resources
[2].start
= srambase
;
888 orion_crypto_resources
[2].end
= srambase
+ sram_size
- 1;
890 platform_device_register(&orion_crypto
);