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>
25 #include <plat/common.h>
27 /* Create a clkdev entry for a given device/clk */
28 void __init
orion_clkdev_add(const char *con_id
, const char *dev_id
,
31 clkdev_create(clk
, con_id
, "%s", dev_id
);
34 /* Create clkdev entries for all orion platforms except kirkwood.
35 Kirkwood has gated clocks for some of its peripherals, so creates
36 its own clkdev entries. For all the other orion devices, create
37 clkdev entries to the tclk. */
38 void __init
orion_clkdev_init(struct clk
*tclk
)
40 orion_clkdev_add(NULL
, "orion_spi.0", tclk
);
41 orion_clkdev_add(NULL
, "orion_spi.1", tclk
);
42 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".0", tclk
);
43 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".1", tclk
);
44 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".2", tclk
);
45 orion_clkdev_add(NULL
, MV643XX_ETH_NAME
".3", tclk
);
46 orion_clkdev_add(NULL
, "orion_wdt", tclk
);
47 orion_clkdev_add(NULL
, MV64XXX_I2C_CTLR_NAME
".0", tclk
);
50 /* Fill in the resources structure and link it into the platform
51 device structure. There is always a memory region, and nearly
52 always an interrupt.*/
53 static void fill_resources(struct platform_device
*device
,
54 struct resource
*resources
,
55 resource_size_t mapbase
,
59 device
->resource
= resources
;
60 device
->num_resources
= 1;
61 resources
[0].flags
= IORESOURCE_MEM
;
62 resources
[0].start
= mapbase
;
63 resources
[0].end
= mapbase
+ size
;
66 device
->num_resources
++;
67 resources
[1].flags
= IORESOURCE_IRQ
;
68 resources
[1].start
= irq
;
69 resources
[1].end
= irq
;
73 /*****************************************************************************
75 ****************************************************************************/
76 static unsigned long __init
uart_get_clk_rate(struct clk
*clk
)
78 clk_prepare_enable(clk
);
79 return clk_get_rate(clk
);
82 static void __init
uart_complete(
83 struct platform_device
*orion_uart
,
84 struct plat_serial8250_port
*data
,
85 struct resource
*resources
,
86 void __iomem
*membase
,
87 resource_size_t mapbase
,
91 data
->mapbase
= mapbase
;
92 data
->membase
= membase
;
94 data
->uartclk
= uart_get_clk_rate(clk
);
95 orion_uart
->dev
.platform_data
= data
;
97 fill_resources(orion_uart
, resources
, mapbase
, 0xff, irq
);
98 platform_device_register(orion_uart
);
101 /*****************************************************************************
103 ****************************************************************************/
104 static struct plat_serial8250_port orion_uart0_data
[] = {
106 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
113 static struct resource orion_uart0_resources
[2];
115 static struct platform_device orion_uart0
= {
116 .name
= "serial8250",
117 .id
= PLAT8250_DEV_PLATFORM
,
120 void __init
orion_uart0_init(void __iomem
*membase
,
121 resource_size_t mapbase
,
125 uart_complete(&orion_uart0
, orion_uart0_data
, orion_uart0_resources
,
126 membase
, mapbase
, irq
, clk
);
129 /*****************************************************************************
131 ****************************************************************************/
132 static struct plat_serial8250_port orion_uart1_data
[] = {
134 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
141 static struct resource orion_uart1_resources
[2];
143 static struct platform_device orion_uart1
= {
144 .name
= "serial8250",
145 .id
= PLAT8250_DEV_PLATFORM1
,
148 void __init
orion_uart1_init(void __iomem
*membase
,
149 resource_size_t mapbase
,
153 uart_complete(&orion_uart1
, orion_uart1_data
, orion_uart1_resources
,
154 membase
, mapbase
, irq
, clk
);
157 /*****************************************************************************
159 ****************************************************************************/
160 static struct plat_serial8250_port orion_uart2_data
[] = {
162 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
169 static struct resource orion_uart2_resources
[2];
171 static struct platform_device orion_uart2
= {
172 .name
= "serial8250",
173 .id
= PLAT8250_DEV_PLATFORM2
,
176 void __init
orion_uart2_init(void __iomem
*membase
,
177 resource_size_t mapbase
,
181 uart_complete(&orion_uart2
, orion_uart2_data
, orion_uart2_resources
,
182 membase
, mapbase
, irq
, clk
);
185 /*****************************************************************************
187 ****************************************************************************/
188 static struct plat_serial8250_port orion_uart3_data
[] = {
190 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
197 static struct resource orion_uart3_resources
[2];
199 static struct platform_device orion_uart3
= {
200 .name
= "serial8250",
204 void __init
orion_uart3_init(void __iomem
*membase
,
205 resource_size_t mapbase
,
209 uart_complete(&orion_uart3
, orion_uart3_data
, orion_uart3_resources
,
210 membase
, mapbase
, irq
, clk
);
213 /*****************************************************************************
215 ****************************************************************************/
216 static struct resource orion_rtc_resource
[2];
218 void __init
orion_rtc_init(unsigned long mapbase
,
221 orion_rtc_resource
[0].start
= mapbase
;
222 orion_rtc_resource
[0].end
= mapbase
+ SZ_32
- 1;
223 orion_rtc_resource
[0].flags
= IORESOURCE_MEM
;
224 orion_rtc_resource
[1].start
= irq
;
225 orion_rtc_resource
[1].end
= irq
;
226 orion_rtc_resource
[1].flags
= IORESOURCE_IRQ
;
228 platform_device_register_simple("rtc-mv", -1, orion_rtc_resource
, 2);
231 /*****************************************************************************
233 ****************************************************************************/
234 static __init
void ge_complete(
235 struct mv643xx_eth_shared_platform_data
*orion_ge_shared_data
,
236 struct resource
*orion_ge_resource
, unsigned long irq
,
237 struct platform_device
*orion_ge_shared
,
238 struct platform_device
*orion_ge_mvmdio
,
239 struct mv643xx_eth_platform_data
*eth_data
,
240 struct platform_device
*orion_ge
)
242 orion_ge_resource
->start
= irq
;
243 orion_ge_resource
->end
= irq
;
244 eth_data
->shared
= orion_ge_shared
;
245 orion_ge
->dev
.platform_data
= eth_data
;
247 platform_device_register(orion_ge_shared
);
249 platform_device_register(orion_ge_mvmdio
);
250 platform_device_register(orion_ge
);
253 /*****************************************************************************
255 ****************************************************************************/
256 static struct mv643xx_eth_shared_platform_data orion_ge00_shared_data
;
258 static struct resource orion_ge00_shared_resources
[] = {
264 static struct platform_device orion_ge00_shared
= {
265 .name
= MV643XX_ETH_SHARED_NAME
,
268 .platform_data
= &orion_ge00_shared_data
,
272 static struct resource orion_ge_mvmdio_resources
[] = {
274 .name
= "ge00 mvmdio base",
276 .name
= "ge00 mvmdio err irq",
280 static struct platform_device orion_ge_mvmdio
= {
281 .name
= "orion-mdio",
285 static struct resource orion_ge00_resources
[] = {
288 .flags
= IORESOURCE_IRQ
,
292 static struct platform_device orion_ge00
= {
293 .name
= MV643XX_ETH_NAME
,
296 .resource
= orion_ge00_resources
,
298 .coherent_dma_mask
= DMA_BIT_MASK(32),
302 void __init
orion_ge00_init(struct mv643xx_eth_platform_data
*eth_data
,
303 unsigned long mapbase
,
305 unsigned long irq_err
,
306 unsigned int tx_csum_limit
)
308 fill_resources(&orion_ge00_shared
, orion_ge00_shared_resources
,
309 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
310 fill_resources(&orion_ge_mvmdio
, orion_ge_mvmdio_resources
,
311 mapbase
+ 0x2004, 0x84 - 1, irq_err
);
312 orion_ge00_shared_data
.tx_csum_limit
= tx_csum_limit
;
313 ge_complete(&orion_ge00_shared_data
,
314 orion_ge00_resources
, irq
, &orion_ge00_shared
,
316 eth_data
, &orion_ge00
);
319 /*****************************************************************************
321 ****************************************************************************/
322 static struct mv643xx_eth_shared_platform_data orion_ge01_shared_data
;
324 static struct resource orion_ge01_shared_resources
[] = {
330 static struct platform_device orion_ge01_shared
= {
331 .name
= MV643XX_ETH_SHARED_NAME
,
334 .platform_data
= &orion_ge01_shared_data
,
338 static struct resource orion_ge01_resources
[] = {
341 .flags
= IORESOURCE_IRQ
,
345 static struct platform_device orion_ge01
= {
346 .name
= MV643XX_ETH_NAME
,
349 .resource
= orion_ge01_resources
,
351 .coherent_dma_mask
= DMA_BIT_MASK(32),
355 void __init
orion_ge01_init(struct mv643xx_eth_platform_data
*eth_data
,
356 unsigned long mapbase
,
358 unsigned long irq_err
,
359 unsigned int tx_csum_limit
)
361 fill_resources(&orion_ge01_shared
, orion_ge01_shared_resources
,
362 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
363 orion_ge01_shared_data
.tx_csum_limit
= tx_csum_limit
;
364 ge_complete(&orion_ge01_shared_data
,
365 orion_ge01_resources
, irq
, &orion_ge01_shared
,
367 eth_data
, &orion_ge01
);
370 /*****************************************************************************
372 ****************************************************************************/
373 static struct mv643xx_eth_shared_platform_data orion_ge10_shared_data
;
375 static struct resource orion_ge10_shared_resources
[] = {
381 static struct platform_device orion_ge10_shared
= {
382 .name
= MV643XX_ETH_SHARED_NAME
,
385 .platform_data
= &orion_ge10_shared_data
,
389 static struct resource orion_ge10_resources
[] = {
392 .flags
= IORESOURCE_IRQ
,
396 static struct platform_device orion_ge10
= {
397 .name
= MV643XX_ETH_NAME
,
400 .resource
= orion_ge10_resources
,
402 .coherent_dma_mask
= DMA_BIT_MASK(32),
406 void __init
orion_ge10_init(struct mv643xx_eth_platform_data
*eth_data
,
407 unsigned long mapbase
,
409 unsigned long irq_err
)
411 fill_resources(&orion_ge10_shared
, orion_ge10_shared_resources
,
412 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
413 ge_complete(&orion_ge10_shared_data
,
414 orion_ge10_resources
, irq
, &orion_ge10_shared
,
416 eth_data
, &orion_ge10
);
419 /*****************************************************************************
421 ****************************************************************************/
422 static struct mv643xx_eth_shared_platform_data orion_ge11_shared_data
;
424 static struct resource orion_ge11_shared_resources
[] = {
430 static struct platform_device orion_ge11_shared
= {
431 .name
= MV643XX_ETH_SHARED_NAME
,
434 .platform_data
= &orion_ge11_shared_data
,
438 static struct resource orion_ge11_resources
[] = {
441 .flags
= IORESOURCE_IRQ
,
445 static struct platform_device orion_ge11
= {
446 .name
= MV643XX_ETH_NAME
,
449 .resource
= orion_ge11_resources
,
451 .coherent_dma_mask
= DMA_BIT_MASK(32),
455 void __init
orion_ge11_init(struct mv643xx_eth_platform_data
*eth_data
,
456 unsigned long mapbase
,
458 unsigned long irq_err
)
460 fill_resources(&orion_ge11_shared
, orion_ge11_shared_resources
,
461 mapbase
+ 0x2000, SZ_16K
- 1, NO_IRQ
);
462 ge_complete(&orion_ge11_shared_data
,
463 orion_ge11_resources
, irq
, &orion_ge11_shared
,
465 eth_data
, &orion_ge11
);
468 /*****************************************************************************
470 ****************************************************************************/
471 static struct resource orion_switch_resources
[] = {
475 .flags
= IORESOURCE_IRQ
,
479 static struct platform_device orion_switch_device
= {
483 .resource
= orion_switch_resources
,
486 void __init
orion_ge00_switch_init(struct dsa_platform_data
*d
, int irq
)
491 orion_switch_resources
[0].start
= irq
;
492 orion_switch_resources
[0].end
= irq
;
493 orion_switch_device
.num_resources
= 1;
496 d
->netdev
= &orion_ge00
.dev
;
497 for (i
= 0; i
< d
->nr_chips
; i
++)
498 d
->chip
[i
].host_dev
= &orion_ge00_shared
.dev
;
499 orion_switch_device
.dev
.platform_data
= d
;
501 platform_device_register(&orion_switch_device
);
504 /*****************************************************************************
506 ****************************************************************************/
507 static struct mv64xxx_i2c_pdata orion_i2c_pdata
= {
509 .timeout
= 1000, /* Default timeout of 1 second */
512 static struct resource orion_i2c_resources
[2];
514 static struct platform_device orion_i2c
= {
515 .name
= MV64XXX_I2C_CTLR_NAME
,
518 .platform_data
= &orion_i2c_pdata
,
522 static struct mv64xxx_i2c_pdata orion_i2c_1_pdata
= {
524 .timeout
= 1000, /* Default timeout of 1 second */
527 static struct resource orion_i2c_1_resources
[2];
529 static struct platform_device orion_i2c_1
= {
530 .name
= MV64XXX_I2C_CTLR_NAME
,
533 .platform_data
= &orion_i2c_1_pdata
,
537 void __init
orion_i2c_init(unsigned long mapbase
,
539 unsigned long freq_m
)
541 orion_i2c_pdata
.freq_m
= freq_m
;
542 fill_resources(&orion_i2c
, orion_i2c_resources
, mapbase
,
544 platform_device_register(&orion_i2c
);
547 void __init
orion_i2c_1_init(unsigned long mapbase
,
549 unsigned long freq_m
)
551 orion_i2c_1_pdata
.freq_m
= freq_m
;
552 fill_resources(&orion_i2c_1
, orion_i2c_1_resources
, mapbase
,
554 platform_device_register(&orion_i2c_1
);
557 /*****************************************************************************
559 ****************************************************************************/
560 static struct resource orion_spi_resources
;
562 static struct platform_device orion_spi
= {
567 static struct resource orion_spi_1_resources
;
569 static struct platform_device orion_spi_1
= {
574 /* Note: The SPI silicon core does have interrupts. However the
575 * current Linux software driver does not use interrupts. */
577 void __init
orion_spi_init(unsigned long mapbase
)
579 fill_resources(&orion_spi
, &orion_spi_resources
,
580 mapbase
, SZ_512
- 1, NO_IRQ
);
581 platform_device_register(&orion_spi
);
584 void __init
orion_spi_1_init(unsigned long mapbase
)
586 fill_resources(&orion_spi_1
, &orion_spi_1_resources
,
587 mapbase
, SZ_512
- 1, NO_IRQ
);
588 platform_device_register(&orion_spi_1
);
591 /*****************************************************************************
593 ****************************************************************************/
594 static struct resource orion_wdt_resource
[] = {
595 DEFINE_RES_MEM(TIMER_PHYS_BASE
, 0x04),
596 DEFINE_RES_MEM(RSTOUTn_MASK_PHYS
, 0x04),
599 static struct platform_device orion_wdt_device
= {
602 .num_resources
= ARRAY_SIZE(orion_wdt_resource
),
603 .resource
= orion_wdt_resource
,
606 void __init
orion_wdt_init(void)
608 platform_device_register(&orion_wdt_device
);
611 /*****************************************************************************
613 ****************************************************************************/
614 static u64 orion_xor_dmamask
= DMA_BIT_MASK(32);
616 /*****************************************************************************
618 ****************************************************************************/
619 static struct resource orion_xor0_shared_resources
[] = {
622 .flags
= IORESOURCE_MEM
,
624 .name
= "xor 0 high",
625 .flags
= IORESOURCE_MEM
,
627 .name
= "irq channel 0",
628 .flags
= IORESOURCE_IRQ
,
630 .name
= "irq channel 1",
631 .flags
= IORESOURCE_IRQ
,
635 static struct mv_xor_channel_data orion_xor0_channels_data
[2];
637 static struct mv_xor_platform_data orion_xor0_pdata
= {
638 .channels
= orion_xor0_channels_data
,
641 static struct platform_device orion_xor0_shared
= {
644 .num_resources
= ARRAY_SIZE(orion_xor0_shared_resources
),
645 .resource
= orion_xor0_shared_resources
,
647 .dma_mask
= &orion_xor_dmamask
,
648 .coherent_dma_mask
= DMA_BIT_MASK(64),
649 .platform_data
= &orion_xor0_pdata
,
653 void __init
orion_xor0_init(unsigned long mapbase_low
,
654 unsigned long mapbase_high
,
658 orion_xor0_shared_resources
[0].start
= mapbase_low
;
659 orion_xor0_shared_resources
[0].end
= mapbase_low
+ 0xff;
660 orion_xor0_shared_resources
[1].start
= mapbase_high
;
661 orion_xor0_shared_resources
[1].end
= mapbase_high
+ 0xff;
663 orion_xor0_shared_resources
[2].start
= irq_0
;
664 orion_xor0_shared_resources
[2].end
= irq_0
;
665 orion_xor0_shared_resources
[3].start
= irq_1
;
666 orion_xor0_shared_resources
[3].end
= irq_1
;
668 dma_cap_set(DMA_MEMCPY
, orion_xor0_channels_data
[0].cap_mask
);
669 dma_cap_set(DMA_XOR
, orion_xor0_channels_data
[0].cap_mask
);
671 dma_cap_set(DMA_MEMCPY
, orion_xor0_channels_data
[1].cap_mask
);
672 dma_cap_set(DMA_XOR
, orion_xor0_channels_data
[1].cap_mask
);
674 platform_device_register(&orion_xor0_shared
);
677 /*****************************************************************************
679 ****************************************************************************/
680 static struct resource orion_xor1_shared_resources
[] = {
683 .flags
= IORESOURCE_MEM
,
685 .name
= "xor 1 high",
686 .flags
= IORESOURCE_MEM
,
688 .name
= "irq channel 0",
689 .flags
= IORESOURCE_IRQ
,
691 .name
= "irq channel 1",
692 .flags
= IORESOURCE_IRQ
,
696 static struct mv_xor_channel_data orion_xor1_channels_data
[2];
698 static struct mv_xor_platform_data orion_xor1_pdata
= {
699 .channels
= orion_xor1_channels_data
,
702 static struct platform_device orion_xor1_shared
= {
705 .num_resources
= ARRAY_SIZE(orion_xor1_shared_resources
),
706 .resource
= orion_xor1_shared_resources
,
708 .dma_mask
= &orion_xor_dmamask
,
709 .coherent_dma_mask
= DMA_BIT_MASK(64),
710 .platform_data
= &orion_xor1_pdata
,
714 void __init
orion_xor1_init(unsigned long mapbase_low
,
715 unsigned long mapbase_high
,
719 orion_xor1_shared_resources
[0].start
= mapbase_low
;
720 orion_xor1_shared_resources
[0].end
= mapbase_low
+ 0xff;
721 orion_xor1_shared_resources
[1].start
= mapbase_high
;
722 orion_xor1_shared_resources
[1].end
= mapbase_high
+ 0xff;
724 orion_xor1_shared_resources
[2].start
= irq_0
;
725 orion_xor1_shared_resources
[2].end
= irq_0
;
726 orion_xor1_shared_resources
[3].start
= irq_1
;
727 orion_xor1_shared_resources
[3].end
= irq_1
;
729 dma_cap_set(DMA_MEMCPY
, orion_xor1_channels_data
[0].cap_mask
);
730 dma_cap_set(DMA_XOR
, orion_xor1_channels_data
[0].cap_mask
);
732 dma_cap_set(DMA_MEMCPY
, orion_xor1_channels_data
[1].cap_mask
);
733 dma_cap_set(DMA_XOR
, orion_xor1_channels_data
[1].cap_mask
);
735 platform_device_register(&orion_xor1_shared
);
738 /*****************************************************************************
740 ****************************************************************************/
741 static struct orion_ehci_data orion_ehci_data
;
742 static u64 ehci_dmamask
= DMA_BIT_MASK(32);
745 /*****************************************************************************
747 ****************************************************************************/
748 static struct resource orion_ehci_resources
[2];
750 static struct platform_device orion_ehci
= {
751 .name
= "orion-ehci",
754 .dma_mask
= &ehci_dmamask
,
755 .coherent_dma_mask
= DMA_BIT_MASK(32),
756 .platform_data
= &orion_ehci_data
,
760 void __init
orion_ehci_init(unsigned long mapbase
,
762 enum orion_ehci_phy_ver phy_version
)
764 orion_ehci_data
.phy_version
= phy_version
;
765 fill_resources(&orion_ehci
, orion_ehci_resources
, mapbase
, SZ_4K
- 1,
768 platform_device_register(&orion_ehci
);
771 /*****************************************************************************
773 ****************************************************************************/
774 static struct resource orion_ehci_1_resources
[2];
776 static struct platform_device orion_ehci_1
= {
777 .name
= "orion-ehci",
780 .dma_mask
= &ehci_dmamask
,
781 .coherent_dma_mask
= DMA_BIT_MASK(32),
782 .platform_data
= &orion_ehci_data
,
786 void __init
orion_ehci_1_init(unsigned long mapbase
,
789 fill_resources(&orion_ehci_1
, orion_ehci_1_resources
,
790 mapbase
, SZ_4K
- 1, irq
);
792 platform_device_register(&orion_ehci_1
);
795 /*****************************************************************************
797 ****************************************************************************/
798 static struct resource orion_ehci_2_resources
[2];
800 static struct platform_device orion_ehci_2
= {
801 .name
= "orion-ehci",
804 .dma_mask
= &ehci_dmamask
,
805 .coherent_dma_mask
= DMA_BIT_MASK(32),
806 .platform_data
= &orion_ehci_data
,
810 void __init
orion_ehci_2_init(unsigned long mapbase
,
813 fill_resources(&orion_ehci_2
, orion_ehci_2_resources
,
814 mapbase
, SZ_4K
- 1, irq
);
816 platform_device_register(&orion_ehci_2
);
819 /*****************************************************************************
821 ****************************************************************************/
822 static struct resource orion_sata_resources
[2] = {
830 static struct platform_device orion_sata
= {
834 .coherent_dma_mask
= DMA_BIT_MASK(32),
838 void __init
orion_sata_init(struct mv_sata_platform_data
*sata_data
,
839 unsigned long mapbase
,
842 orion_sata
.dev
.platform_data
= sata_data
;
843 fill_resources(&orion_sata
, orion_sata_resources
,
844 mapbase
, 0x5000 - 1, irq
);
846 platform_device_register(&orion_sata
);
849 /*****************************************************************************
850 * Cryptographic Engines and Security Accelerator (CESA)
851 ****************************************************************************/
852 static struct resource orion_crypto_resources
[] = {
856 .name
= "crypto interrupt",
859 .flags
= IORESOURCE_MEM
,
863 static struct platform_device orion_crypto
= {
868 void __init
orion_crypto_init(unsigned long mapbase
,
869 unsigned long srambase
,
870 unsigned long sram_size
,
873 fill_resources(&orion_crypto
, orion_crypto_resources
,
874 mapbase
, 0xffff, irq
);
875 orion_crypto
.num_resources
= 3;
876 orion_crypto_resources
[2].start
= srambase
;
877 orion_crypto_resources
[2].end
= srambase
+ sram_size
- 1;
879 platform_device_register(&orion_crypto
);