1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2011 Freescale Semiconductor
4 * Author: Mingkai Hu <Mingkai.hu@freescale.com>
6 * This file provides support for the board-specific CPLD used on some Freescale
9 * The following macros need to be defined:
11 * CPLD_BASE - The virtual address of the base of the CPLD register map
20 static u8 __cpld_read(unsigned int reg)
22 void *p = (void *)CPLD_BASE;
26 u8 cpld_read(unsigned int reg) __attribute__((weak, alias("__cpld_read")));
28 static void __cpld_write(unsigned int reg, u8 value)
30 void *p = (void *)CPLD_BASE;
32 out_8(p + reg, value);
34 void cpld_write(unsigned int reg, u8 value)
35 __attribute__((weak, alias("__cpld_write")));
38 * Reset the board. This honors the por_cfg registers.
40 void __cpld_reset(void)
42 CPLD_WRITE(system_rst, 1);
44 void cpld_reset(void) __attribute__((weak, alias("__cpld_reset")));
47 * Set the boot bank to the alternate bank
49 void __cpld_set_altbank(void)
51 u8 reg5 = CPLD_READ(sw_ctl_on);
53 CPLD_WRITE(sw_ctl_on, reg5 | CPLD_SWITCH_BANK_ENABLE);
54 CPLD_WRITE(fbank_sel, 1);
55 CPLD_WRITE(system_rst, 1);
57 void cpld_set_altbank(void)
58 __attribute__((weak, alias("__cpld_set_altbank")));
61 * Set the boot bank to the default bank
63 void __cpld_set_defbank(void)
65 CPLD_WRITE(system_rst_default, 1);
67 void cpld_set_defbank(void)
68 __attribute__((weak, alias("__cpld_set_defbank")));
71 static void cpld_dump_regs(void)
73 printf("cpld_ver = 0x%02x\n", CPLD_READ(cpld_ver));
74 printf("cpld_ver_sub = 0x%02x\n", CPLD_READ(cpld_ver_sub));
75 printf("pcba_ver = 0x%02x\n", CPLD_READ(pcba_ver));
76 printf("system_rst = 0x%02x\n", CPLD_READ(system_rst));
77 printf("sw_ctl_on = 0x%02x\n", CPLD_READ(sw_ctl_on));
78 printf("por_cfg = 0x%02x\n", CPLD_READ(por_cfg));
79 printf("switch_strobe = 0x%02x\n", CPLD_READ(switch_strobe));
80 printf("jtag_sel = 0x%02x\n", CPLD_READ(jtag_sel));
81 printf("sdbank1_clk = 0x%02x\n", CPLD_READ(sdbank1_clk));
82 printf("sdbank2_clk = 0x%02x\n", CPLD_READ(sdbank2_clk));
83 printf("fbank_sel = 0x%02x\n", CPLD_READ(fbank_sel));
84 printf("serdes_mux = 0x%02x\n", CPLD_READ(serdes_mux));
85 printf("SW[2] = 0x%02x\n", in_8(&CPLD_SW(2)));
90 int cpld_cmd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
95 return cmd_usage(cmdtp);
97 if (strcmp(argv[1], "reset") == 0) {
98 if (strcmp(argv[2], "altbank") == 0)
102 } else if (strcmp(argv[1], "lane_mux") == 0) {
103 u32 lane = hextoul(argv[2], NULL);
104 u8 val = (u8)hextoul(argv[3], NULL);
105 u8 reg = CPLD_READ(serdes_mux);
109 reg &= ~SERDES_MUX_LANE_6_MASK;
110 reg |= val << SERDES_MUX_LANE_6_SHIFT;
113 reg &= ~SERDES_MUX_LANE_A_MASK;
114 reg |= val << SERDES_MUX_LANE_A_SHIFT;
117 reg &= ~SERDES_MUX_LANE_C_MASK;
118 reg |= val << SERDES_MUX_LANE_C_SHIFT;
121 reg &= ~SERDES_MUX_LANE_D_MASK;
122 reg |= val << SERDES_MUX_LANE_D_SHIFT;
125 printf("Invalid value\n");
129 CPLD_WRITE(serdes_mux, reg);
131 } else if (strcmp(argv[1], "dump") == 0) {
135 rc = cmd_usage(cmdtp);
141 cpld_cmd, CONFIG_SYS_MAXARGS, 1, cpld_cmd,
142 "Reset the board or pin mulexing selection using the CPLD sequencer",
143 "reset - hard reset to default bank\n"
144 "cpld_cmd reset altbank - reset to alternate bank\n"
145 "cpld_cmd lane_mux <lane> <mux_value> - set multiplexed lane pin\n"
146 " lane 6: 0 -> slot1\n"
147 " 1 -> SGMII (Default)\n"
148 " lane a: 0 -> slot2\n"
149 " 1 -> AURORA (Default)\n"
150 " lane c: 0 -> slot2\n"
151 " 1 -> SATA0 (Default)\n"
152 " lane d: 0 -> slot2\n"
153 " 1 -> SATA1 (Default)\n"
155 "cpld_cmd dump - display the CPLD registers\n"