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-2017 Cavium, Inc.
7 * Copyright (C) 2008 Wind River Systems
10 #include <linux/etherdevice.h>
11 #include <linux/of_platform.h>
12 #include <linux/of_fdt.h>
13 #include <linux/libfdt.h>
15 #include <asm/octeon/octeon.h>
16 #include <asm/octeon/cvmx-helper-board.h>
19 #include <linux/usb/ehci_def.h>
20 #include <linux/usb/ehci_pdriver.h>
21 #include <linux/usb/ohci_pdriver.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 static DEFINE_MUTEX(octeon2_usb_clocks_mutex);
29 static int octeon2_usb_clock_start_cnt;
31 static int __init octeon2_usb_reset(void)
33 union cvmx_uctlx_clk_rst_ctl clk_rst_ctl;
36 if (!OCTEON_IS_OCTEON2())
39 clk_rst_ctl.u64 = cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
40 if (clk_rst_ctl.s.hrst) {
41 ucmd = cvmx_read64_uint32(CVMX_UAHCX_EHCI_USBCMD);
43 cvmx_write64_uint32(CVMX_UAHCX_EHCI_USBCMD, ucmd);
46 cvmx_write64_uint32(CVMX_UAHCX_EHCI_USBCMD, ucmd);
47 ucmd = cvmx_read64_uint32(CVMX_UAHCX_OHCI_USBCMD);
49 cvmx_write64_uint32(CVMX_UAHCX_OHCI_USBCMD, ucmd);
54 arch_initcall(octeon2_usb_reset);
56 static void octeon2_usb_clocks_start(struct device *dev)
59 union cvmx_uctlx_if_ena if_ena;
60 union cvmx_uctlx_clk_rst_ctl clk_rst_ctl;
61 union cvmx_uctlx_uphy_portx_ctl_status port_ctl_status;
63 unsigned long io_clk_64_to_ns;
64 u32 clock_rate = 12000000;
65 bool is_crystal_clock = false;
68 mutex_lock(&octeon2_usb_clocks_mutex);
70 octeon2_usb_clock_start_cnt++;
71 if (octeon2_usb_clock_start_cnt != 1)
74 io_clk_64_to_ns = 64000000000ull / octeon_get_io_clock_rate();
77 struct device_node *uctl_node;
78 const char *clock_type;
80 uctl_node = of_get_parent(dev->of_node);
82 dev_err(dev, "No UCTL device node\n");
85 i = of_property_read_u32(uctl_node,
86 "refclk-frequency", &clock_rate);
88 dev_err(dev, "No UCTL \"refclk-frequency\"\n");
89 of_node_put(uctl_node);
92 i = of_property_read_string(uctl_node,
93 "refclk-type", &clock_type);
94 of_node_put(uctl_node);
95 if (!i && strcmp("crystal", clock_type) == 0)
96 is_crystal_clock = true;
100 * Step 1: Wait for voltages stable. That surely happened
101 * before starting the kernel.
103 * Step 2: Enable SCLK of UCTL by writing UCTL0_IF_ENA[EN] = 1
107 cvmx_write_csr(CVMX_UCTLX_IF_ENA(0), if_ena.u64);
109 for (i = 0; i <= 1; i++) {
110 port_ctl_status.u64 =
111 cvmx_read_csr(CVMX_UCTLX_UPHY_PORTX_CTL_STATUS(i, 0));
112 /* Set txvreftune to 15 to obtain compliant 'eye' diagram. */
113 port_ctl_status.s.txvreftune = 15;
114 port_ctl_status.s.txrisetune = 1;
115 port_ctl_status.s.txpreemphasistune = 1;
116 cvmx_write_csr(CVMX_UCTLX_UPHY_PORTX_CTL_STATUS(i, 0),
117 port_ctl_status.u64);
120 /* Step 3: Configure the reference clock, PHY, and HCLK */
121 clk_rst_ctl.u64 = cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
124 * If the UCTL looks like it has already been started, skip
125 * the initialization, otherwise bus errors are obtained.
127 if (clk_rst_ctl.s.hrst)
130 clk_rst_ctl.s.p_por = 1;
131 clk_rst_ctl.s.hrst = 0;
132 clk_rst_ctl.s.p_prst = 0;
133 clk_rst_ctl.s.h_clkdiv_rst = 0;
134 clk_rst_ctl.s.o_clkdiv_rst = 0;
135 clk_rst_ctl.s.h_clkdiv_en = 0;
136 clk_rst_ctl.s.o_clkdiv_en = 0;
137 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
140 clk_rst_ctl.s.p_refclk_sel = is_crystal_clock ? 0 : 1;
141 switch (clock_rate) {
143 pr_err("Invalid UCTL clock rate of %u, using 12000000 instead\n",
147 clk_rst_ctl.s.p_refclk_div = 0;
150 clk_rst_ctl.s.p_refclk_div = 1;
153 clk_rst_ctl.s.p_refclk_div = 2;
156 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
159 div = octeon_get_io_clock_rate() / 130000000ull;
187 clk_rst_ctl.s.h_div = div;
188 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
190 clk_rst_ctl.u64 = cvmx_read_csr(CVMX_UCTLX_CLK_RST_CTL(0));
191 clk_rst_ctl.s.h_clkdiv_en = 1;
192 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
194 clk_rst_ctl.s.h_clkdiv_rst = 1;
195 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
197 /* 3e: delay 64 io clocks */
198 ndelay(io_clk_64_to_ns);
201 * Step 4: Program the power-on reset field in the UCTL
202 * clock-reset-control register.
204 clk_rst_ctl.s.p_por = 0;
205 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
207 /* Step 5: Wait 3 ms for the PHY clock to start. */
210 /* Steps 6..9 for ATE only, are skipped. */
212 /* Step 10: Configure the OHCI_CLK48 and OHCI_CLK12 clocks. */
214 clk_rst_ctl.s.o_clkdiv_rst = 1;
215 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
218 clk_rst_ctl.s.o_clkdiv_en = 1;
219 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
222 ndelay(io_clk_64_to_ns);
225 * Step 11: Program the PHY reset field:
226 * UCTL0_CLK_RST_CTL[P_PRST] = 1
228 clk_rst_ctl.s.p_prst = 1;
229 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
235 clk_rst_ctl.s.p_prst = 0;
236 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
242 clk_rst_ctl.s.p_prst = 1;
243 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
245 /* Step 12: Wait 1 uS. */
248 /* Step 13: Program the HRESET_N field: UCTL0_CLK_RST_CTL[HRST] = 1 */
249 clk_rst_ctl.s.hrst = 1;
250 cvmx_write_csr(CVMX_UCTLX_CLK_RST_CTL(0), clk_rst_ctl.u64);
253 /* Set uSOF cycle period to 60,000 bits. */
254 cvmx_write_csr(CVMX_UCTLX_EHCI_FLA(0), 0x20ull);
257 mutex_unlock(&octeon2_usb_clocks_mutex);
260 static void octeon2_usb_clocks_stop(void)
262 mutex_lock(&octeon2_usb_clocks_mutex);
263 octeon2_usb_clock_start_cnt--;
264 mutex_unlock(&octeon2_usb_clocks_mutex);
267 static int octeon_ehci_power_on(struct platform_device *pdev)
269 octeon2_usb_clocks_start(&pdev->dev);
273 static void octeon_ehci_power_off(struct platform_device *pdev)
275 octeon2_usb_clocks_stop();
278 static struct usb_ehci_pdata octeon_ehci_pdata = {
279 /* Octeon EHCI matches CPU endianness. */
281 .big_endian_mmio = 1,
284 * We can DMA from anywhere. But the descriptors must be in
288 .power_on = octeon_ehci_power_on,
289 .power_off = octeon_ehci_power_off,
292 static void __init octeon_ehci_hw_start(struct device *dev)
294 union cvmx_uctlx_ehci_ctl ehci_ctl;
296 octeon2_usb_clocks_start(dev);
298 ehci_ctl.u64 = cvmx_read_csr(CVMX_UCTLX_EHCI_CTL(0));
299 /* Use 64-bit addressing. */
300 ehci_ctl.s.ehci_64b_addr_en = 1;
301 ehci_ctl.s.l2c_addr_msb = 0;
303 ehci_ctl.s.l2c_buff_emod = 1; /* Byte swapped. */
304 ehci_ctl.s.l2c_desc_emod = 1; /* Byte swapped. */
306 ehci_ctl.s.l2c_buff_emod = 0; /* not swapped. */
307 ehci_ctl.s.l2c_desc_emod = 0; /* not swapped. */
308 ehci_ctl.s.inv_reg_a2 = 1;
310 cvmx_write_csr(CVMX_UCTLX_EHCI_CTL(0), ehci_ctl.u64);
312 octeon2_usb_clocks_stop();
315 static int __init octeon_ehci_device_init(void)
317 struct platform_device *pd;
318 struct device_node *ehci_node;
321 ehci_node = of_find_node_by_name(NULL, "ehci");
325 pd = of_find_device_by_node(ehci_node);
326 of_node_put(ehci_node);
330 pd->dev.platform_data = &octeon_ehci_pdata;
331 octeon_ehci_hw_start(&pd->dev);
332 put_device(&pd->dev);
336 device_initcall(octeon_ehci_device_init);
338 static int octeon_ohci_power_on(struct platform_device *pdev)
340 octeon2_usb_clocks_start(&pdev->dev);
344 static void octeon_ohci_power_off(struct platform_device *pdev)
346 octeon2_usb_clocks_stop();
349 static struct usb_ohci_pdata octeon_ohci_pdata = {
350 /* Octeon OHCI matches CPU endianness. */
352 .big_endian_mmio = 1,
354 .power_on = octeon_ohci_power_on,
355 .power_off = octeon_ohci_power_off,
358 static void __init octeon_ohci_hw_start(struct device *dev)
360 union cvmx_uctlx_ohci_ctl ohci_ctl;
362 octeon2_usb_clocks_start(dev);
364 ohci_ctl.u64 = cvmx_read_csr(CVMX_UCTLX_OHCI_CTL(0));
365 ohci_ctl.s.l2c_addr_msb = 0;
367 ohci_ctl.s.l2c_buff_emod = 1; /* Byte swapped. */
368 ohci_ctl.s.l2c_desc_emod = 1; /* Byte swapped. */
370 ohci_ctl.s.l2c_buff_emod = 0; /* not swapped. */
371 ohci_ctl.s.l2c_desc_emod = 0; /* not swapped. */
372 ohci_ctl.s.inv_reg_a2 = 1;
374 cvmx_write_csr(CVMX_UCTLX_OHCI_CTL(0), ohci_ctl.u64);
376 octeon2_usb_clocks_stop();
379 static int __init octeon_ohci_device_init(void)
381 struct platform_device *pd;
382 struct device_node *ohci_node;
385 ohci_node = of_find_node_by_name(NULL, "ohci");
389 pd = of_find_device_by_node(ohci_node);
390 of_node_put(ohci_node);
394 pd->dev.platform_data = &octeon_ohci_pdata;
395 octeon_ohci_hw_start(&pd->dev);
396 put_device(&pd->dev);
400 device_initcall(octeon_ohci_device_init);
402 #endif /* CONFIG_USB */
404 /* Octeon Random Number Generator. */
405 static int __init octeon_rng_device_init(void)
407 struct platform_device *pd;
410 struct resource rng_resources[] = {
412 .flags = IORESOURCE_MEM,
413 .start = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS),
414 .end = XKPHYS_TO_PHYS(CVMX_RNM_CTL_STATUS) + 0xf
416 .flags = IORESOURCE_MEM,
417 .start = cvmx_build_io_address(8, 0),
418 .end = cvmx_build_io_address(8, 0) + 0x7
422 pd = platform_device_alloc("octeon_rng", -1);
428 ret = platform_device_add_resources(pd, rng_resources,
429 ARRAY_SIZE(rng_resources));
433 ret = platform_device_add(pd);
439 platform_device_put(pd);
444 device_initcall(octeon_rng_device_init);
446 const struct of_device_id octeon_ids[] __initconst = {
447 { .compatible = "simple-bus", },
448 { .compatible = "cavium,octeon-6335-uctl", },
449 { .compatible = "cavium,octeon-5750-usbn", },
450 { .compatible = "cavium,octeon-3860-bootbus", },
451 { .compatible = "cavium,mdio-mux", },
452 { .compatible = "gpio-leds", },
453 { .compatible = "cavium,octeon-7130-usb-uctl", },
457 static bool __init octeon_has_88e1145(void)
459 return !OCTEON_IS_MODEL(OCTEON_CN52XX) &&
460 !OCTEON_IS_MODEL(OCTEON_CN6XXX) &&
461 !OCTEON_IS_MODEL(OCTEON_CN56XX);
464 static void __init octeon_fdt_set_phy(int eth, int phy_addr)
466 const __be32 *phy_handle;
467 const __be32 *alt_phy_handle;
476 phy_handle = fdt_getprop(initial_boot_params, eth, "phy-handle", NULL);
480 phandle = be32_to_cpup(phy_handle);
481 phy = fdt_node_offset_by_phandle(initial_boot_params, phandle);
483 alt_phy_handle = fdt_getprop(initial_boot_params, eth, "cavium,alt-phy-handle", NULL);
484 if (alt_phy_handle) {
485 u32 alt_phandle = be32_to_cpup(alt_phy_handle);
487 alt_phy = fdt_node_offset_by_phandle(initial_boot_params, alt_phandle);
492 if (phy_addr < 0 || phy < 0) {
493 /* Delete the PHY things */
494 fdt_nop_property(initial_boot_params, eth, "phy-handle");
495 /* This one may fail */
496 fdt_nop_property(initial_boot_params, eth, "cavium,alt-phy-handle");
498 fdt_nop_node(initial_boot_params, phy);
500 fdt_nop_node(initial_boot_params, alt_phy);
504 if (phy_addr >= 256 && alt_phy > 0) {
505 const struct fdt_property *phy_prop;
506 struct fdt_property *alt_prop;
507 fdt32_t phy_handle_name;
509 /* Use the alt phy node instead.*/
510 phy_prop = fdt_get_property(initial_boot_params, eth, "phy-handle", NULL);
511 phy_handle_name = phy_prop->nameoff;
512 fdt_nop_node(initial_boot_params, phy);
513 fdt_nop_property(initial_boot_params, eth, "phy-handle");
514 alt_prop = fdt_get_property_w(initial_boot_params, eth, "cavium,alt-phy-handle", NULL);
515 alt_prop->nameoff = phy_handle_name;
521 if (octeon_has_88e1145()) {
522 fdt_nop_property(initial_boot_params, phy, "marvell,reg-init");
523 memset(new_name, 0, sizeof(new_name));
524 strcpy(new_name, "marvell,88e1145");
525 p = fdt_getprop(initial_boot_params, phy, "compatible",
527 if (p && current_len >= strlen(new_name))
528 fdt_setprop_inplace(initial_boot_params, phy,
529 "compatible", new_name, current_len);
532 reg = fdt_getprop(initial_boot_params, phy, "reg", NULL);
533 if (phy_addr == be32_to_cpup(reg))
536 fdt_setprop_inplace_cell(initial_boot_params, phy, "reg", phy_addr);
538 snprintf(new_name, sizeof(new_name), "ethernet-phy@%x", phy_addr);
540 p = fdt_get_name(initial_boot_params, phy, ¤t_len);
541 if (p && current_len == strlen(new_name))
542 fdt_set_name(initial_boot_params, phy, new_name);
544 pr_err("Error: could not rename ethernet phy: <%s>", p);
547 static void __init octeon_fdt_set_mac_addr(int n, u64 *pmac)
555 old_mac = fdt_getprop(initial_boot_params, n, "local-mac-address",
557 if (!old_mac || old_len != 6 || is_valid_ether_addr(old_mac))
560 new_mac[0] = (mac >> 40) & 0xff;
561 new_mac[1] = (mac >> 32) & 0xff;
562 new_mac[2] = (mac >> 24) & 0xff;
563 new_mac[3] = (mac >> 16) & 0xff;
564 new_mac[4] = (mac >> 8) & 0xff;
565 new_mac[5] = mac & 0xff;
567 r = fdt_setprop_inplace(initial_boot_params, n, "local-mac-address",
568 new_mac, sizeof(new_mac));
571 pr_err("Setting \"local-mac-address\" failed %d", r);
577 static void __init octeon_fdt_rm_ethernet(int node)
579 const __be32 *phy_handle;
581 phy_handle = fdt_getprop(initial_boot_params, node, "phy-handle", NULL);
583 u32 ph = be32_to_cpup(phy_handle);
584 int p = fdt_node_offset_by_phandle(initial_boot_params, ph);
587 fdt_nop_node(initial_boot_params, p);
589 fdt_nop_node(initial_boot_params, node);
592 static void __init octeon_fdt_pip_port(int iface, int i, int p, int max)
594 char name_buffer[20];
599 snprintf(name_buffer, sizeof(name_buffer), "ethernet@%x", p);
600 eth = fdt_subnode_offset(initial_boot_params, iface, name_buffer);
604 pr_debug("Deleting port %x:%x\n", i, p);
605 octeon_fdt_rm_ethernet(eth);
608 if (OCTEON_IS_MODEL(OCTEON_CN68XX))
609 ipd_port = (0x100 * i) + (0x10 * p) + 0x800;
611 ipd_port = 16 * i + p;
613 phy_addr = cvmx_helper_board_get_mii_address(ipd_port);
614 octeon_fdt_set_phy(eth, phy_addr);
617 static void __init octeon_fdt_pip_iface(int pip, int idx)
619 char name_buffer[20];
624 snprintf(name_buffer, sizeof(name_buffer), "interface@%d", idx);
625 iface = fdt_subnode_offset(initial_boot_params, pip, name_buffer);
629 if (cvmx_helper_interface_enumerate(idx) == 0)
630 count = cvmx_helper_ports_on_interface(idx);
632 for (p = 0; p < 16; p++)
633 octeon_fdt_pip_port(iface, idx, p, count - 1);
636 void __init octeon_fill_mac_addresses(void)
638 const char *alias_prop;
639 char name_buffer[20];
645 aliases = fdt_path_offset(initial_boot_params, "/aliases");
650 ((octeon_bootinfo->mac_addr_base[0] & 0xffull)) << 40 |
651 ((octeon_bootinfo->mac_addr_base[1] & 0xffull)) << 32 |
652 ((octeon_bootinfo->mac_addr_base[2] & 0xffull)) << 24 |
653 ((octeon_bootinfo->mac_addr_base[3] & 0xffull)) << 16 |
654 ((octeon_bootinfo->mac_addr_base[4] & 0xffull)) << 8 |
655 (octeon_bootinfo->mac_addr_base[5] & 0xffull);
657 for (i = 0; i < 2; i++) {
660 snprintf(name_buffer, sizeof(name_buffer), "mix%d", i);
661 alias_prop = fdt_getprop(initial_boot_params, aliases,
665 mgmt = fdt_path_offset(initial_boot_params, alias_prop);
668 octeon_fdt_set_mac_addr(mgmt, &mac_addr_base);
671 alias_prop = fdt_getprop(initial_boot_params, aliases, "pip", NULL);
675 pip = fdt_path_offset(initial_boot_params, alias_prop);
679 for (i = 0; i <= 4; i++) {
683 snprintf(name_buffer, sizeof(name_buffer), "interface@%d", i);
684 iface = fdt_subnode_offset(initial_boot_params, pip,
688 for (p = 0; p < 16; p++) {
691 snprintf(name_buffer, sizeof(name_buffer),
693 eth = fdt_subnode_offset(initial_boot_params, iface,
697 octeon_fdt_set_mac_addr(eth, &mac_addr_base);
702 int __init octeon_prune_device_tree(void)
704 int i, max_port, uart_mask;
705 const char *pip_path;
706 const char *alias_prop;
707 char name_buffer[20];
710 if (fdt_check_header(initial_boot_params))
711 panic("Corrupt Device Tree.");
713 WARN(octeon_bootinfo->board_type == CVMX_BOARD_TYPE_CUST_DSR1000N,
714 "Built-in DTB booting is deprecated on %s. Please switch to use appended DTB.",
715 cvmx_board_type_to_string(octeon_bootinfo->board_type));
717 aliases = fdt_path_offset(initial_boot_params, "/aliases");
719 pr_err("Error: No /aliases node in device tree.");
723 if (OCTEON_IS_MODEL(OCTEON_CN52XX) || OCTEON_IS_MODEL(OCTEON_CN63XX))
725 else if (OCTEON_IS_MODEL(OCTEON_CN56XX) || OCTEON_IS_MODEL(OCTEON_CN68XX))
730 if (octeon_bootinfo->board_type == CVMX_BOARD_TYPE_NIC10E)
733 for (i = 0; i < 2; i++) {
736 snprintf(name_buffer, sizeof(name_buffer),
738 alias_prop = fdt_getprop(initial_boot_params, aliases,
741 mgmt = fdt_path_offset(initial_boot_params, alias_prop);
745 pr_debug("Deleting mix%d\n", i);
746 octeon_fdt_rm_ethernet(mgmt);
747 fdt_nop_property(initial_boot_params, aliases,
750 int phy_addr = cvmx_helper_board_get_mii_address(CVMX_HELPER_BOARD_MGMT_IPD_PORT + i);
752 octeon_fdt_set_phy(mgmt, phy_addr);
757 pip_path = fdt_getprop(initial_boot_params, aliases, "pip", NULL);
759 int pip = fdt_path_offset(initial_boot_params, pip_path);
762 for (i = 0; i <= 4; i++)
763 octeon_fdt_pip_iface(pip, i);
767 if (OCTEON_IS_MODEL(OCTEON_CN52XX) ||
768 OCTEON_IS_MODEL(OCTEON_CN63XX) ||
769 OCTEON_IS_MODEL(OCTEON_CN68XX) ||
770 OCTEON_IS_MODEL(OCTEON_CN56XX))
775 for (i = 0; i < 2; i++) {
778 snprintf(name_buffer, sizeof(name_buffer),
780 alias_prop = fdt_getprop(initial_boot_params, aliases,
784 i2c = fdt_path_offset(initial_boot_params, alias_prop);
788 pr_debug("Deleting twsi%d\n", i);
789 fdt_nop_node(initial_boot_params, i2c);
790 fdt_nop_property(initial_boot_params, aliases,
797 if (OCTEON_IS_MODEL(OCTEON_CN68XX))
799 else if (OCTEON_IS_MODEL(OCTEON_CN52XX) ||
800 OCTEON_IS_MODEL(OCTEON_CN63XX) ||
801 OCTEON_IS_MODEL(OCTEON_CN56XX))
806 for (i = 0; i < 2; i++) {
809 snprintf(name_buffer, sizeof(name_buffer),
811 alias_prop = fdt_getprop(initial_boot_params, aliases,
814 i2c = fdt_path_offset(initial_boot_params, alias_prop);
818 pr_debug("Deleting smi%d\n", i);
819 fdt_nop_node(initial_boot_params, i2c);
820 fdt_nop_property(initial_boot_params, aliases,
829 /* Right now CN52XX is the only chip with a third uart */
830 if (OCTEON_IS_MODEL(OCTEON_CN52XX))
831 uart_mask |= 4; /* uart2 */
833 for (i = 0; i < 3; i++) {
836 snprintf(name_buffer, sizeof(name_buffer),
838 alias_prop = fdt_getprop(initial_boot_params, aliases,
842 uart = fdt_path_offset(initial_boot_params, alias_prop);
843 if (uart_mask & (1 << i)) {
846 f = cpu_to_be32(octeon_get_io_clock_rate());
847 fdt_setprop_inplace(initial_boot_params,
848 uart, "clock-frequency",
852 pr_debug("Deleting uart%d\n", i);
853 fdt_nop_node(initial_boot_params, uart);
854 fdt_nop_property(initial_boot_params, aliases,
860 alias_prop = fdt_getprop(initial_boot_params, aliases,
863 union cvmx_mio_boot_reg_cfgx mio_boot_reg_cfg;
864 unsigned long base_ptr, region_base, region_size;
865 unsigned long region1_base = 0;
866 unsigned long region1_size = 0;
868 bool is_16bit = false;
869 bool is_true_ide = false;
874 int cf = fdt_path_offset(initial_boot_params, alias_prop);
877 if (octeon_bootinfo->major_version == 1
878 && octeon_bootinfo->minor_version >= 1) {
879 if (octeon_bootinfo->compact_flash_common_base_addr)
880 base_ptr = octeon_bootinfo->compact_flash_common_base_addr;
882 base_ptr = 0x1d000800;
888 /* Find CS0 region. */
889 for (cs = 0; cs < 8; cs++) {
890 mio_boot_reg_cfg.u64 = cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs));
891 region_base = mio_boot_reg_cfg.s.base << 16;
892 region_size = (mio_boot_reg_cfg.s.size + 1) << 16;
893 if (mio_boot_reg_cfg.s.en && base_ptr >= region_base
894 && base_ptr < region_base + region_size) {
895 is_16bit = mio_boot_reg_cfg.s.width;
900 /* cs and cs + 1 are CS0 and CS1, both must be less than 8. */
904 if (!(base_ptr & 0xfffful)) {
906 * Boot loader signals availability of DMA (true_ide
907 * mode) by setting low order bits of base_ptr to
911 /* Asume that CS1 immediately follows. */
912 mio_boot_reg_cfg.u64 =
913 cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs + 1));
914 region1_base = mio_boot_reg_cfg.s.base << 16;
915 region1_size = (mio_boot_reg_cfg.s.size + 1) << 16;
916 if (!mio_boot_reg_cfg.s.en)
921 fdt_nop_property(initial_boot_params, cf, "cavium,true-ide");
922 fdt_nop_property(initial_boot_params, cf, "cavium,dma-engine-handle");
924 __be32 width = cpu_to_be32(8);
926 fdt_setprop_inplace(initial_boot_params, cf,
927 "cavium,bus-width", &width, sizeof(width));
930 new_reg[0] = cpu_to_be32(cs);
931 new_reg[1] = cpu_to_be32(0);
932 new_reg[2] = cpu_to_be32(0x10000);
933 new_reg[3] = cpu_to_be32(cs + 1);
934 new_reg[4] = cpu_to_be32(0);
935 new_reg[5] = cpu_to_be32(0x10000);
936 fdt_setprop_inplace(initial_boot_params, cf,
937 "reg", new_reg, sizeof(new_reg));
939 bootbus = fdt_parent_offset(initial_boot_params, cf);
942 ranges = fdt_getprop_w(initial_boot_params, bootbus, "ranges", &len);
943 if (!ranges || len < (5 * 8 * sizeof(__be32)))
946 ranges[(cs * 5) + 2] = cpu_to_be32(region_base >> 32);
947 ranges[(cs * 5) + 3] = cpu_to_be32(region_base & 0xffffffff);
948 ranges[(cs * 5) + 4] = cpu_to_be32(region_size);
951 ranges[(cs * 5) + 2] = cpu_to_be32(region1_base >> 32);
952 ranges[(cs * 5) + 3] = cpu_to_be32(region1_base & 0xffffffff);
953 ranges[(cs * 5) + 4] = cpu_to_be32(region1_size);
957 fdt_nop_node(initial_boot_params, cf);
964 alias_prop = fdt_getprop(initial_boot_params, aliases,
967 union cvmx_mio_boot_reg_cfgx mio_boot_reg_cfg;
968 unsigned long base_ptr, region_base, region_size;
973 int led = fdt_path_offset(initial_boot_params, alias_prop);
975 base_ptr = octeon_bootinfo->led_display_base_addr;
978 /* Find CS0 region. */
979 for (cs = 0; cs < 8; cs++) {
980 mio_boot_reg_cfg.u64 = cvmx_read_csr(CVMX_MIO_BOOT_REG_CFGX(cs));
981 region_base = mio_boot_reg_cfg.s.base << 16;
982 region_size = (mio_boot_reg_cfg.s.size + 1) << 16;
983 if (mio_boot_reg_cfg.s.en && base_ptr >= region_base
984 && base_ptr < region_base + region_size)
991 new_reg[0] = cpu_to_be32(cs);
992 new_reg[1] = cpu_to_be32(0x20);
993 new_reg[2] = cpu_to_be32(0x20);
994 new_reg[3] = cpu_to_be32(cs);
995 new_reg[4] = cpu_to_be32(0);
996 new_reg[5] = cpu_to_be32(0x20);
997 fdt_setprop_inplace(initial_boot_params, led,
998 "reg", new_reg, sizeof(new_reg));
1000 bootbus = fdt_parent_offset(initial_boot_params, led);
1003 ranges = fdt_getprop_w(initial_boot_params, bootbus, "ranges", &len);
1004 if (!ranges || len < (5 * 8 * sizeof(__be32)))
1007 ranges[(cs * 5) + 2] = cpu_to_be32(region_base >> 32);
1008 ranges[(cs * 5) + 3] = cpu_to_be32(region_base & 0xffffffff);
1009 ranges[(cs * 5) + 4] = cpu_to_be32(region_size);
1013 fdt_nop_node(initial_boot_params, led);
1020 alias_prop = fdt_getprop(initial_boot_params, aliases,
1023 int uctl = fdt_path_offset(initial_boot_params, alias_prop);
1025 if (uctl >= 0 && (!OCTEON_IS_MODEL(OCTEON_CN6XXX) ||
1026 octeon_bootinfo->board_type == CVMX_BOARD_TYPE_NIC2E)) {
1027 pr_debug("Deleting uctl\n");
1028 fdt_nop_node(initial_boot_params, uctl);
1029 fdt_nop_property(initial_boot_params, aliases, "uctl");
1030 } else if (octeon_bootinfo->board_type == CVMX_BOARD_TYPE_NIC10E ||
1031 octeon_bootinfo->board_type == CVMX_BOARD_TYPE_NIC4E) {
1032 /* Missing "refclk-type" defaults to crystal. */
1033 fdt_nop_property(initial_boot_params, uctl, "refclk-type");
1038 alias_prop = fdt_getprop(initial_boot_params, aliases,
1041 int usbn = fdt_path_offset(initial_boot_params, alias_prop);
1043 if (usbn >= 0 && (current_cpu_type() == CPU_CAVIUM_OCTEON2 ||
1044 !octeon_has_feature(OCTEON_FEATURE_USB))) {
1045 pr_debug("Deleting usbn\n");
1046 fdt_nop_node(initial_boot_params, usbn);
1047 fdt_nop_property(initial_boot_params, aliases, "usbn");
1050 enum cvmx_helper_board_usb_clock_types c;
1052 c = __cvmx_helper_board_usb_get_clock_type();
1054 case USB_CLOCK_TYPE_REF_48:
1055 new_f[0] = cpu_to_be32(48000000);
1056 fdt_setprop_inplace(initial_boot_params, usbn,
1057 "refclk-frequency", new_f, sizeof(new_f));
1058 /* Fall through ...*/
1059 case USB_CLOCK_TYPE_REF_12:
1060 /* Missing "refclk-type" defaults to external. */
1061 fdt_nop_property(initial_boot_params, usbn, "refclk-type");
1073 static int __init octeon_publish_devices(void)
1075 return of_platform_populate(NULL, octeon_ids, NULL, NULL);
1077 arch_initcall(octeon_publish_devices);