2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2004-2016 Cavium Networks
7 * Copyright (C) 2008 Wind River Systems
10 #include <linux/init.h>
11 #include <linux/delay.h>
12 #include <linux/etherdevice.h>
13 #include <linux/of_platform.h>
14 #include <linux/of_fdt.h>
15 #include <linux/libfdt.h>
16 #include <linux/usb/ehci_def.h>
17 #include <linux/usb/ehci_pdriver.h>
18 #include <linux/usb/ohci_pdriver.h>
20 #include <asm/octeon/octeon.h>
21 #include <asm/octeon/cvmx-helper-board.h>
22 #include <asm/octeon/cvmx-uctlx-defs.h>
24 #define CVMX_UAHCX_EHCI_USBCMD (CVMX_ADD_IO_SEG(0x00016F0000000010ull))
25 #define CVMX_UAHCX_OHCI_USBCMD (CVMX_ADD_IO_SEG(0x00016F0000000408ull))
27 /* Octeon Random Number Generator. */
28 static int __init
octeon_rng_device_init(void)
30 struct platform_device
*pd
;
33 struct resource rng_resources
[] = {
35 .flags
= IORESOURCE_MEM
,
36 .start
= XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS
),
37 .end
= XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS
) + 0xf
39 .flags
= IORESOURCE_MEM
,
40 .start
= cvmx_build_io_address(8, 0),
41 .end
= cvmx_build_io_address(8, 0) + 0x7
45 pd
= platform_device_alloc("octeon_rng", -1);
51 ret
= platform_device_add_resources(pd
, rng_resources
,
52 ARRAY_SIZE(rng_resources
));
56 ret
= platform_device_add(pd
);
62 platform_device_put(pd
);
67 device_initcall(octeon_rng_device_init
);
71 static DEFINE_MUTEX(octeon2_usb_clocks_mutex
);
73 static int octeon2_usb_clock_start_cnt
;
75 static int __init
octeon2_usb_reset(void)
77 union cvmx_uctlx_clk_rst_ctl clk_rst_ctl
;
80 if (!OCTEON_IS_OCTEON2())
83 clk_rst_ctl
.u64
= cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
84 if (clk_rst_ctl
.s
.hrst
) {
85 ucmd
= cvmx_read64_uint32(CVMX_UAHCX_EHCI_USBCMD
);
87 cvmx_write64_uint32(CVMX_UAHCX_EHCI_USBCMD
, ucmd
);
90 cvmx_write64_uint32(CVMX_UAHCX_EHCI_USBCMD
, ucmd
);
91 ucmd
= cvmx_read64_uint32(CVMX_UAHCX_OHCI_USBCMD
);
93 cvmx_write64_uint32(CVMX_UAHCX_OHCI_USBCMD
, ucmd
);
98 arch_initcall(octeon2_usb_reset
);
100 static void octeon2_usb_clocks_start(struct device
*dev
)
103 union cvmx_uctlx_if_ena if_ena
;
104 union cvmx_uctlx_clk_rst_ctl clk_rst_ctl
;
105 union cvmx_uctlx_uphy_portx_ctl_status port_ctl_status
;
107 unsigned long io_clk_64_to_ns
;
108 u32 clock_rate
= 12000000;
109 bool is_crystal_clock
= false;
112 mutex_lock(&octeon2_usb_clocks_mutex
);
114 octeon2_usb_clock_start_cnt
++;
115 if (octeon2_usb_clock_start_cnt
!= 1)
118 io_clk_64_to_ns
= 64000000000ull / octeon_get_io_clock_rate();
121 struct device_node
*uctl_node
;
122 const char *clock_type
;
124 uctl_node
= of_get_parent(dev
->of_node
);
126 dev_err(dev
, "No UCTL device node\n");
129 i
= of_property_read_u32(uctl_node
,
130 "refclk-frequency", &clock_rate
);
132 dev_err(dev
, "No UCTL \"refclk-frequency\"\n");
135 i
= of_property_read_string(uctl_node
,
136 "refclk-type", &clock_type
);
138 if (!i
&& strcmp("crystal", clock_type
) == 0)
139 is_crystal_clock
= true;
143 * Step 1: Wait for voltages stable. That surely happened
144 * before starting the kernel.
146 * Step 2: Enable SCLK of UCTL by writing UCTL0_IF_ENA[EN] = 1
150 cvmx_write_csr(CVMX_UCTLX_IF_ENA(0), if_ena
.u64
);
152 for (i
= 0; i
<= 1; i
++) {
153 port_ctl_status
.u64
=
154 cvmx_read_csr(CVMX_UCTLX_UPHY_PORTX_CTL_STATUS(i
, 0));
155 /* Set txvreftune to 15 to obtain compliant 'eye' diagram. */
156 port_ctl_status
.s
.txvreftune
= 15;
157 port_ctl_status
.s
.txrisetune
= 1;
158 port_ctl_status
.s
.txpreemphasistune
= 1;
159 cvmx_write_csr(CVMX_UCTLX_UPHY_PORTX_CTL_STATUS(i
, 0),
160 port_ctl_status
.u64
);
163 /* Step 3: Configure the reference clock, PHY, and HCLK */
164 clk_rst_ctl
.u64
= cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
167 * If the UCTL looks like it has already been started, skip
168 * the initialization, otherwise bus errors are obtained.
170 if (clk_rst_ctl
.s
.hrst
)
173 clk_rst_ctl
.s
.p_por
= 1;
174 clk_rst_ctl
.s
.hrst
= 0;
175 clk_rst_ctl
.s
.p_prst
= 0;
176 clk_rst_ctl
.s
.h_clkdiv_rst
= 0;
177 clk_rst_ctl
.s
.o_clkdiv_rst
= 0;
178 clk_rst_ctl
.s
.h_clkdiv_en
= 0;
179 clk_rst_ctl
.s
.o_clkdiv_en
= 0;
180 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
183 clk_rst_ctl
.s
.p_refclk_sel
= is_crystal_clock
? 0 : 1;
184 switch (clock_rate
) {
186 pr_err("Invalid UCTL clock rate of %u, using 12000000 instead\n",
190 clk_rst_ctl
.s
.p_refclk_div
= 0;
193 clk_rst_ctl
.s
.p_refclk_div
= 1;
196 clk_rst_ctl
.s
.p_refclk_div
= 2;
199 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
202 div
= octeon_get_io_clock_rate() / 130000000ull;
230 clk_rst_ctl
.s
.h_div
= div
;
231 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
233 clk_rst_ctl
.u64
= cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
234 clk_rst_ctl
.s
.h_clkdiv_en
= 1;
235 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
237 clk_rst_ctl
.s
.h_clkdiv_rst
= 1;
238 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
240 /* 3e: delay 64 io clocks */
241 ndelay(io_clk_64_to_ns
);
244 * Step 4: Program the power-on reset field in the UCTL
245 * clock-reset-control register.
247 clk_rst_ctl
.s
.p_por
= 0;
248 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
250 /* Step 5: Wait 3 ms for the PHY clock to start. */
253 /* Steps 6..9 for ATE only, are skipped. */
255 /* Step 10: Configure the OHCI_CLK48 and OHCI_CLK12 clocks. */
257 clk_rst_ctl
.s
.o_clkdiv_rst
= 1;
258 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
261 clk_rst_ctl
.s
.o_clkdiv_en
= 1;
262 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
265 ndelay(io_clk_64_to_ns
);
268 * Step 11: Program the PHY reset field:
269 * UCTL0_CLK_RST_CTL[P_PRST] = 1
271 clk_rst_ctl
.s
.p_prst
= 1;
272 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
278 clk_rst_ctl
.s
.p_prst
= 0;
279 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
285 clk_rst_ctl
.s
.p_prst
= 1;
286 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
288 /* Step 12: Wait 1 uS. */
291 /* Step 13: Program the HRESET_N field: UCTL0_CLK_RST_CTL[HRST] = 1 */
292 clk_rst_ctl
.s
.hrst
= 1;
293 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl
.u64
);
296 /* Set uSOF cycle period to 60,000 bits. */
297 cvmx_write_csr(CVMX_UCTLX_EHCI_FLA(0), 0x20ull
);
300 mutex_unlock(&octeon2_usb_clocks_mutex
);
303 static void octeon2_usb_clocks_stop(void)
305 mutex_lock(&octeon2_usb_clocks_mutex
);
306 octeon2_usb_clock_start_cnt
--;
307 mutex_unlock(&octeon2_usb_clocks_mutex
);
310 static int octeon_ehci_power_on(struct platform_device
*pdev
)
312 octeon2_usb_clocks_start(&pdev
->dev
);
316 static void octeon_ehci_power_off(struct platform_device
*pdev
)
318 octeon2_usb_clocks_stop();
321 static struct usb_ehci_pdata octeon_ehci_pdata
= {
322 /* Octeon EHCI matches CPU endianness. */
324 .big_endian_mmio
= 1,
327 * We can DMA from anywhere. But the descriptors must be in
331 .power_on
= octeon_ehci_power_on
,
332 .power_off
= octeon_ehci_power_off
,
335 static void __init
octeon_ehci_hw_start(struct device
*dev
)
337 union cvmx_uctlx_ehci_ctl ehci_ctl
;
339 octeon2_usb_clocks_start(dev
);
341 ehci_ctl
.u64
= cvmx_read_csr(CVMX_UCTLX_EHCI_CTL(0));
342 /* Use 64-bit addressing. */
343 ehci_ctl
.s
.ehci_64b_addr_en
= 1;
344 ehci_ctl
.s
.l2c_addr_msb
= 0;
346 ehci_ctl
.s
.l2c_buff_emod
= 1; /* Byte swapped. */
347 ehci_ctl
.s
.l2c_desc_emod
= 1; /* Byte swapped. */
349 ehci_ctl
.s
.l2c_buff_emod
= 0; /* not swapped. */
350 ehci_ctl
.s
.l2c_desc_emod
= 0; /* not swapped. */
351 ehci_ctl
.s
.inv_reg_a2
= 1;
353 cvmx_write_csr(CVMX_UCTLX_EHCI_CTL(0), ehci_ctl
.u64
);
355 octeon2_usb_clocks_stop();
358 static int __init
octeon_ehci_device_init(void)
360 struct platform_device
*pd
;
361 struct device_node
*ehci_node
;
364 ehci_node
= of_find_node_by_name(NULL
, "ehci");
368 pd
= of_find_device_by_node(ehci_node
);
372 pd
->dev
.platform_data
= &octeon_ehci_pdata
;
373 octeon_ehci_hw_start(&pd
->dev
);
377 device_initcall(octeon_ehci_device_init
);
379 static int octeon_ohci_power_on(struct platform_device
*pdev
)
381 octeon2_usb_clocks_start(&pdev
->dev
);
385 static void octeon_ohci_power_off(struct platform_device
*pdev
)
387 octeon2_usb_clocks_stop();
390 static struct usb_ohci_pdata octeon_ohci_pdata
= {
391 /* Octeon OHCI matches CPU endianness. */
393 .big_endian_mmio
= 1,
395 .power_on
= octeon_ohci_power_on
,
396 .power_off
= octeon_ohci_power_off
,
399 static void __init
octeon_ohci_hw_start(struct device
*dev
)
401 union cvmx_uctlx_ohci_ctl ohci_ctl
;
403 octeon2_usb_clocks_start(dev
);
405 ohci_ctl
.u64
= cvmx_read_csr(CVMX_UCTLX_OHCI_CTL(0));
406 ohci_ctl
.s
.l2c_addr_msb
= 0;
408 ohci_ctl
.s
.l2c_buff_emod
= 1; /* Byte swapped. */
409 ohci_ctl
.s
.l2c_desc_emod
= 1; /* Byte swapped. */
411 ohci_ctl
.s
.l2c_buff_emod
= 0; /* not swapped. */
412 ohci_ctl
.s
.l2c_desc_emod
= 0; /* not swapped. */
413 ohci_ctl
.s
.inv_reg_a2
= 1;
415 cvmx_write_csr(CVMX_UCTLX_OHCI_CTL(0), ohci_ctl
.u64
);
417 octeon2_usb_clocks_stop();
420 static int __init
octeon_ohci_device_init(void)
422 struct platform_device
*pd
;
423 struct device_node
*ohci_node
;
426 ohci_node
= of_find_node_by_name(NULL
, "ohci");
430 pd
= of_find_device_by_node(ohci_node
);
434 pd
->dev
.platform_data
= &octeon_ohci_pdata
;
435 octeon_ohci_hw_start(&pd
->dev
);
439 device_initcall(octeon_ohci_device_init
);
441 #endif /* CONFIG_USB */
444 static struct of_device_id __initdata octeon_ids
[] = {
445 { .compatible
= "simple-bus", },
446 { .compatible
= "cavium,octeon-6335-uctl", },
447 { .compatible
= "cavium,octeon-5750-usbn", },
448 { .compatible
= "cavium,octeon-3860-bootbus", },
449 { .compatible
= "cavium,mdio-mux", },
450 { .compatible
= "gpio-leds", },
454 static bool __init
octeon_has_88e1145(void)
456 return !OCTEON_IS_MODEL(OCTEON_CN52XX
) &&
457 !OCTEON_IS_MODEL(OCTEON_CN6XXX
) &&
458 !OCTEON_IS_MODEL(OCTEON_CN56XX
);
461 static void __init
octeon_fdt_set_phy(int eth
, int phy_addr
)
463 const __be32
*phy_handle
;
464 const __be32
*alt_phy_handle
;
473 phy_handle
= fdt_getprop(initial_boot_params
, eth
, "phy-handle", NULL
);
477 phandle
= be32_to_cpup(phy_handle
);
478 phy
= fdt_node_offset_by_phandle(initial_boot_params
, phandle
);
480 alt_phy_handle
= fdt_getprop(initial_boot_params
, eth
, "cavium,alt-phy-handle", NULL
);
481 if (alt_phy_handle
) {
482 u32 alt_phandle
= be32_to_cpup(alt_phy_handle
);
483 alt_phy
= fdt_node_offset_by_phandle(initial_boot_params
, alt_phandle
);
488 if (phy_addr
< 0 || phy
< 0) {
489 /* Delete the PHY things */
490 fdt_nop_property(initial_boot_params
, eth
, "phy-handle");
491 /* This one may fail */
492 fdt_nop_property(initial_boot_params
, eth
, "cavium,alt-phy-handle");
494 fdt_nop_node(initial_boot_params
, phy
);
496 fdt_nop_node(initial_boot_params
, alt_phy
);
500 if (phy_addr
>= 256 && alt_phy
> 0) {
501 const struct fdt_property
*phy_prop
;
502 struct fdt_property
*alt_prop
;
505 /* Use the alt phy node instead.*/
506 phy_prop
= fdt_get_property(initial_boot_params
, eth
, "phy-handle", NULL
);
507 phy_handle_name
= phy_prop
->nameoff
;
508 fdt_nop_node(initial_boot_params
, phy
);
509 fdt_nop_property(initial_boot_params
, eth
, "phy-handle");
510 alt_prop
= fdt_get_property_w(initial_boot_params
, eth
, "cavium,alt-phy-handle", NULL
);
511 alt_prop
->nameoff
= phy_handle_name
;
517 if (octeon_has_88e1145()) {
518 fdt_nop_property(initial_boot_params
, phy
, "marvell,reg-init");
519 memset(new_name
, 0, sizeof(new_name
));
520 strcpy(new_name
, "marvell,88e1145");
521 p
= fdt_getprop(initial_boot_params
, phy
, "compatible",
523 if (p
&& current_len
>= strlen(new_name
))
524 fdt_setprop_inplace(initial_boot_params
, phy
,
525 "compatible", new_name
, current_len
);
528 reg
= fdt_getprop(initial_boot_params
, phy
, "reg", NULL
);
529 if (phy_addr
== be32_to_cpup(reg
))
532 fdt_setprop_inplace_cell(initial_boot_params
, phy
, "reg", phy_addr
);
534 snprintf(new_name
, sizeof(new_name
), "ethernet-phy@%x", phy_addr
);
536 p
= fdt_get_name(initial_boot_params
, phy
, ¤t_len
);
537 if (p
&& current_len
== strlen(new_name
))
538 fdt_set_name(initial_boot_params
, phy
, new_name
);
540 pr_err("Error: could not rename ethernet phy: <%s>", p
);
543 static void __init
octeon_fdt_set_mac_addr(int n
, u64
*pmac
)
551 old_mac
= fdt_getprop(initial_boot_params
, n
, "local-mac-address",
553 if (!old_mac
|| old_len
!= 6 || is_valid_ether_addr(old_mac
))
556 new_mac
[0] = (mac
>> 40) & 0xff;
557 new_mac
[1] = (mac
>> 32) & 0xff;
558 new_mac
[2] = (mac
>> 24) & 0xff;
559 new_mac
[3] = (mac
>> 16) & 0xff;
560 new_mac
[4] = (mac
>> 8) & 0xff;
561 new_mac
[5] = mac
& 0xff;
563 r
= fdt_setprop_inplace(initial_boot_params
, n
, "local-mac-address",
564 new_mac
, sizeof(new_mac
));
567 pr_err("Setting \"local-mac-address\" failed %d", r
);
573 static void __init
octeon_fdt_rm_ethernet(int node
)
575 const __be32
*phy_handle
;
577 phy_handle
= fdt_getprop(initial_boot_params
, node
, "phy-handle", NULL
);
579 u32 ph
= be32_to_cpup(phy_handle
);
580 int p
= fdt_node_offset_by_phandle(initial_boot_params
, ph
);
582 fdt_nop_node(initial_boot_params
, p
);
584 fdt_nop_node(initial_boot_params
, node
);
587 static void __init
octeon_fdt_pip_port(int iface
, int i
, int p
, int max
)
589 char name_buffer
[20];
594 snprintf(name_buffer
, sizeof(name_buffer
), "ethernet@%x", p
);
595 eth
= fdt_subnode_offset(initial_boot_params
, iface
, name_buffer
);
599 pr_debug("Deleting port %x:%x\n", i
, p
);
600 octeon_fdt_rm_ethernet(eth
);
603 if (OCTEON_IS_MODEL(OCTEON_CN68XX
))
604 ipd_port
= (0x100 * i
) + (0x10 * p
) + 0x800;
606 ipd_port
= 16 * i
+ p
;
608 phy_addr
= cvmx_helper_board_get_mii_address(ipd_port
);
609 octeon_fdt_set_phy(eth
, phy_addr
);
612 static void __init
octeon_fdt_pip_iface(int pip
, int idx
)
614 char name_buffer
[20];
619 snprintf(name_buffer
, sizeof(name_buffer
), "interface@%d", idx
);
620 iface
= fdt_subnode_offset(initial_boot_params
, pip
, name_buffer
);
624 if (cvmx_helper_interface_enumerate(idx
) == 0)
625 count
= cvmx_helper_ports_on_interface(idx
);
627 for (p
= 0; p
< 16; p
++)
628 octeon_fdt_pip_port(iface
, idx
, p
, count
- 1);
631 void __init
octeon_fill_mac_addresses(void)
633 const char *alias_prop
;
634 char name_buffer
[20];
640 aliases
= fdt_path_offset(initial_boot_params
, "/aliases");
645 ((octeon_bootinfo
->mac_addr_base
[0] & 0xffull
)) << 40 |
646 ((octeon_bootinfo
->mac_addr_base
[1] & 0xffull
)) << 32 |
647 ((octeon_bootinfo
->mac_addr_base
[2] & 0xffull
)) << 24 |
648 ((octeon_bootinfo
->mac_addr_base
[3] & 0xffull
)) << 16 |
649 ((octeon_bootinfo
->mac_addr_base
[4] & 0xffull
)) << 8 |
650 (octeon_bootinfo
->mac_addr_base
[5] & 0xffull
);
652 for (i
= 0; i
< 2; i
++) {
655 snprintf(name_buffer
, sizeof(name_buffer
), "mix%d", i
);
656 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
660 mgmt
= fdt_path_offset(initial_boot_params
, alias_prop
);
663 octeon_fdt_set_mac_addr(mgmt
, &mac_addr_base
);
666 alias_prop
= fdt_getprop(initial_boot_params
, aliases
, "pip", NULL
);
670 pip
= fdt_path_offset(initial_boot_params
, alias_prop
);
674 for (i
= 0; i
<= 4; i
++) {
678 snprintf(name_buffer
, sizeof(name_buffer
), "interface@%d", i
);
679 iface
= fdt_subnode_offset(initial_boot_params
, pip
,
683 for (p
= 0; p
< 16; p
++) {
686 snprintf(name_buffer
, sizeof(name_buffer
),
688 eth
= fdt_subnode_offset(initial_boot_params
, iface
,
692 octeon_fdt_set_mac_addr(eth
, &mac_addr_base
);
697 int __init
octeon_prune_device_tree(void)
699 int i
, max_port
, uart_mask
;
700 const char *pip_path
;
701 const char *alias_prop
;
702 char name_buffer
[20];
705 if (fdt_check_header(initial_boot_params
))
706 panic("Corrupt Device Tree.");
708 WARN(octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_CUST_DSR1000N
,
709 "Built-in DTB booting is deprecated on %s. Please switch to use appended DTB.",
710 cvmx_board_type_to_string(octeon_bootinfo
->board_type
));
712 aliases
= fdt_path_offset(initial_boot_params
, "/aliases");
714 pr_err("Error: No /aliases node in device tree.");
718 if (OCTEON_IS_MODEL(OCTEON_CN52XX
) || OCTEON_IS_MODEL(OCTEON_CN63XX
))
720 else if (OCTEON_IS_MODEL(OCTEON_CN56XX
) || OCTEON_IS_MODEL(OCTEON_CN68XX
))
725 if (octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_NIC10E
)
728 for (i
= 0; i
< 2; i
++) {
730 snprintf(name_buffer
, sizeof(name_buffer
),
732 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
735 mgmt
= fdt_path_offset(initial_boot_params
, alias_prop
);
739 pr_debug("Deleting mix%d\n", i
);
740 octeon_fdt_rm_ethernet(mgmt
);
741 fdt_nop_property(initial_boot_params
, aliases
,
744 int phy_addr
= cvmx_helper_board_get_mii_address(CVMX_HELPER_BOARD_MGMT_IPD_PORT
+ i
);
745 octeon_fdt_set_phy(mgmt
, phy_addr
);
750 pip_path
= fdt_getprop(initial_boot_params
, aliases
, "pip", NULL
);
752 int pip
= fdt_path_offset(initial_boot_params
, pip_path
);
754 for (i
= 0; i
<= 4; i
++)
755 octeon_fdt_pip_iface(pip
, i
);
759 if (OCTEON_IS_MODEL(OCTEON_CN52XX
) ||
760 OCTEON_IS_MODEL(OCTEON_CN63XX
) ||
761 OCTEON_IS_MODEL(OCTEON_CN68XX
) ||
762 OCTEON_IS_MODEL(OCTEON_CN56XX
))
767 for (i
= 0; i
< 2; i
++) {
769 snprintf(name_buffer
, sizeof(name_buffer
),
771 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
775 i2c
= fdt_path_offset(initial_boot_params
, alias_prop
);
779 pr_debug("Deleting twsi%d\n", i
);
780 fdt_nop_node(initial_boot_params
, i2c
);
781 fdt_nop_property(initial_boot_params
, aliases
,
788 if (OCTEON_IS_MODEL(OCTEON_CN68XX
))
790 else if (OCTEON_IS_MODEL(OCTEON_CN52XX
) ||
791 OCTEON_IS_MODEL(OCTEON_CN63XX
) ||
792 OCTEON_IS_MODEL(OCTEON_CN56XX
))
797 for (i
= 0; i
< 2; i
++) {
799 snprintf(name_buffer
, sizeof(name_buffer
),
801 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
805 i2c
= fdt_path_offset(initial_boot_params
, alias_prop
);
809 pr_debug("Deleting smi%d\n", i
);
810 fdt_nop_node(initial_boot_params
, i2c
);
811 fdt_nop_property(initial_boot_params
, aliases
,
820 /* Right now CN52XX is the only chip with a third uart */
821 if (OCTEON_IS_MODEL(OCTEON_CN52XX
))
822 uart_mask
|= 4; /* uart2 */
824 for (i
= 0; i
< 3; i
++) {
826 snprintf(name_buffer
, sizeof(name_buffer
),
828 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
832 uart
= fdt_path_offset(initial_boot_params
, alias_prop
);
833 if (uart_mask
& (1 << i
)) {
836 f
= cpu_to_be32(octeon_get_io_clock_rate());
837 fdt_setprop_inplace(initial_boot_params
,
838 uart
, "clock-frequency",
842 pr_debug("Deleting uart%d\n", i
);
843 fdt_nop_node(initial_boot_params
, uart
);
844 fdt_nop_property(initial_boot_params
, aliases
,
850 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
853 union cvmx_mio_boot_reg_cfgx mio_boot_reg_cfg
;
854 unsigned long base_ptr
, region_base
, region_size
;
855 unsigned long region1_base
= 0;
856 unsigned long region1_size
= 0;
858 bool is_16bit
= false;
859 bool is_true_ide
= false;
864 int cf
= fdt_path_offset(initial_boot_params
, alias_prop
);
866 if (octeon_bootinfo
->major_version
== 1
867 && octeon_bootinfo
->minor_version
>= 1) {
868 if (octeon_bootinfo
->compact_flash_common_base_addr
)
869 base_ptr
= octeon_bootinfo
->compact_flash_common_base_addr
;
871 base_ptr
= 0x1d000800;
877 /* Find CS0 region. */
878 for (cs
= 0; cs
< 8; cs
++) {
879 mio_boot_reg_cfg
.u64
= cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs
));
880 region_base
= mio_boot_reg_cfg
.s
.base
<< 16;
881 region_size
= (mio_boot_reg_cfg
.s
.size
+ 1) << 16;
882 if (mio_boot_reg_cfg
.s
.en
&& base_ptr
>= region_base
883 && base_ptr
< region_base
+ region_size
) {
884 is_16bit
= mio_boot_reg_cfg
.s
.width
;
889 /* cs and cs + 1 are CS0 and CS1, both must be less than 8. */
893 if (!(base_ptr
& 0xfffful
)) {
895 * Boot loader signals availability of DMA (true_ide
896 * mode) by setting low order bits of base_ptr to
900 /* Asume that CS1 immediately follows. */
901 mio_boot_reg_cfg
.u64
=
902 cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs
+ 1));
903 region1_base
= mio_boot_reg_cfg
.s
.base
<< 16;
904 region1_size
= (mio_boot_reg_cfg
.s
.size
+ 1) << 16;
905 if (!mio_boot_reg_cfg
.s
.en
)
910 fdt_nop_property(initial_boot_params
, cf
, "cavium,true-ide");
911 fdt_nop_property(initial_boot_params
, cf
, "cavium,dma-engine-handle");
913 __be32 width
= cpu_to_be32(8);
914 fdt_setprop_inplace(initial_boot_params
, cf
,
915 "cavium,bus-width", &width
, sizeof(width
));
918 new_reg
[0] = cpu_to_be32(cs
);
919 new_reg
[1] = cpu_to_be32(0);
920 new_reg
[2] = cpu_to_be32(0x10000);
921 new_reg
[3] = cpu_to_be32(cs
+ 1);
922 new_reg
[4] = cpu_to_be32(0);
923 new_reg
[5] = cpu_to_be32(0x10000);
924 fdt_setprop_inplace(initial_boot_params
, cf
,
925 "reg", new_reg
, sizeof(new_reg
));
927 bootbus
= fdt_parent_offset(initial_boot_params
, cf
);
930 ranges
= fdt_getprop_w(initial_boot_params
, bootbus
, "ranges", &len
);
931 if (!ranges
|| len
< (5 * 8 * sizeof(__be32
)))
934 ranges
[(cs
* 5) + 2] = cpu_to_be32(region_base
>> 32);
935 ranges
[(cs
* 5) + 3] = cpu_to_be32(region_base
& 0xffffffff);
936 ranges
[(cs
* 5) + 4] = cpu_to_be32(region_size
);
939 ranges
[(cs
* 5) + 2] = cpu_to_be32(region1_base
>> 32);
940 ranges
[(cs
* 5) + 3] = cpu_to_be32(region1_base
& 0xffffffff);
941 ranges
[(cs
* 5) + 4] = cpu_to_be32(region1_size
);
945 fdt_nop_node(initial_boot_params
, cf
);
952 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
955 union cvmx_mio_boot_reg_cfgx mio_boot_reg_cfg
;
956 unsigned long base_ptr
, region_base
, region_size
;
961 int led
= fdt_path_offset(initial_boot_params
, alias_prop
);
963 base_ptr
= octeon_bootinfo
->led_display_base_addr
;
966 /* Find CS0 region. */
967 for (cs
= 0; cs
< 8; cs
++) {
968 mio_boot_reg_cfg
.u64
= cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs
));
969 region_base
= mio_boot_reg_cfg
.s
.base
<< 16;
970 region_size
= (mio_boot_reg_cfg
.s
.size
+ 1) << 16;
971 if (mio_boot_reg_cfg
.s
.en
&& base_ptr
>= region_base
972 && base_ptr
< region_base
+ region_size
)
979 new_reg
[0] = cpu_to_be32(cs
);
980 new_reg
[1] = cpu_to_be32(0x20);
981 new_reg
[2] = cpu_to_be32(0x20);
982 new_reg
[3] = cpu_to_be32(cs
);
983 new_reg
[4] = cpu_to_be32(0);
984 new_reg
[5] = cpu_to_be32(0x20);
985 fdt_setprop_inplace(initial_boot_params
, led
,
986 "reg", new_reg
, sizeof(new_reg
));
988 bootbus
= fdt_parent_offset(initial_boot_params
, led
);
991 ranges
= fdt_getprop_w(initial_boot_params
, bootbus
, "ranges", &len
);
992 if (!ranges
|| len
< (5 * 8 * sizeof(__be32
)))
995 ranges
[(cs
* 5) + 2] = cpu_to_be32(region_base
>> 32);
996 ranges
[(cs
* 5) + 3] = cpu_to_be32(region_base
& 0xffffffff);
997 ranges
[(cs
* 5) + 4] = cpu_to_be32(region_size
);
1001 fdt_nop_node(initial_boot_params
, led
);
1007 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
1010 int uctl
= fdt_path_offset(initial_boot_params
, alias_prop
);
1012 if (uctl
>= 0 && (!OCTEON_IS_MODEL(OCTEON_CN6XXX
) ||
1013 octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_NIC2E
)) {
1014 pr_debug("Deleting uctl\n");
1015 fdt_nop_node(initial_boot_params
, uctl
);
1016 fdt_nop_property(initial_boot_params
, aliases
, "uctl");
1017 } else if (octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_NIC10E
||
1018 octeon_bootinfo
->board_type
== CVMX_BOARD_TYPE_NIC4E
) {
1019 /* Missing "refclk-type" defaults to crystal. */
1020 fdt_nop_property(initial_boot_params
, uctl
, "refclk-type");
1025 alias_prop
= fdt_getprop(initial_boot_params
, aliases
,
1028 int usbn
= fdt_path_offset(initial_boot_params
, alias_prop
);
1030 if (usbn
>= 0 && (current_cpu_type() == CPU_CAVIUM_OCTEON2
||
1031 !octeon_has_feature(OCTEON_FEATURE_USB
))) {
1032 pr_debug("Deleting usbn\n");
1033 fdt_nop_node(initial_boot_params
, usbn
);
1034 fdt_nop_property(initial_boot_params
, aliases
, "usbn");
1037 enum cvmx_helper_board_usb_clock_types c
;
1038 c
= __cvmx_helper_board_usb_get_clock_type();
1040 case USB_CLOCK_TYPE_REF_48
:
1041 new_f
[0] = cpu_to_be32(48000000);
1042 fdt_setprop_inplace(initial_boot_params
, usbn
,
1043 "refclk-frequency", new_f
, sizeof(new_f
));
1044 /* Fall through ...*/
1045 case USB_CLOCK_TYPE_REF_12
:
1046 /* Missing "refclk-type" defaults to external. */
1047 fdt_nop_property(initial_boot_params
, usbn
, "refclk-type");
1058 static int __init
octeon_publish_devices(void)
1060 return of_platform_bus_probe(NULL
, octeon_ids
, NULL
);
1062 device_initcall(octeon_publish_devices
);
1064 MODULE_AUTHOR("David Daney <ddaney@caviumnetworks.com>");
1065 MODULE_LICENSE("GPL");
1066 MODULE_DESCRIPTION("Platform driver for Octeon SOC");