1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2014 Freescale Semiconductor
7 * This file provides support for the board-specific CPLD used on some Freescale
10 * The following macros need to be defined:
12 * CONFIG_SYS_CPLD_BASE - The virtual address of the base of the
23 u8 cpld_read(unsigned int reg)
25 void *p = (void *)CONFIG_SYS_CPLD_BASE;
30 void cpld_write(unsigned int reg, u8 value)
32 void *p = (void *)CONFIG_SYS_CPLD_BASE;
34 out_8(p + reg, value);
38 * Set the boot bank to the alternate bank
40 void cpld_set_altbank(void)
42 u8 val, curbank, altbank, override;
44 val = CPLD_READ(vbank);
45 curbank = val & CPLD_BANK_SEL_MASK;
48 case CPLD_SELECT_BANK0:
49 case CPLD_SELECT_BANK4:
50 altbank = CPLD_SELECT_BANK4;
51 CPLD_WRITE(vbank, altbank);
52 override = CPLD_READ(software_on);
53 CPLD_WRITE(software_on, override | CPLD_BANK_SEL_EN);
54 CPLD_WRITE(sys_reset, CPLD_SYSTEM_RESET);
57 printf("CPLD Altbank Fail: Invalid value!\n");
63 * Set the boot bank to the default bank
65 void cpld_set_defbank(void)
69 val = CPLD_DEFAULT_BANK;
71 CPLD_WRITE(global_reset, val);
75 static void cpld_dump_regs(void)
77 printf("chip_id1 = 0x%02x\n", CPLD_READ(chip_id1));
78 printf("chip_id2 = 0x%02x\n", CPLD_READ(chip_id2));
79 printf("sw_maj_ver = 0x%02x\n", CPLD_READ(sw_maj_ver));
80 printf("sw_min_ver = 0x%02x\n", CPLD_READ(sw_min_ver));
81 printf("hw_ver = 0x%02x\n", CPLD_READ(hw_ver));
82 printf("software_on = 0x%02x\n", CPLD_READ(software_on));
83 printf("cfg_rcw_src = 0x%02x\n", CPLD_READ(cfg_rcw_src));
84 printf("res0 = 0x%02x\n", CPLD_READ(res0));
85 printf("vbank = 0x%02x\n", CPLD_READ(vbank));
86 printf("sw1_sysclk = 0x%02x\n", CPLD_READ(sw1_sysclk));
87 printf("sw2_status = 0x%02x\n", CPLD_READ(sw2_status));
88 printf("sw3_status = 0x%02x\n", CPLD_READ(sw3_status));
89 printf("sw4_status = 0x%02x\n", CPLD_READ(sw4_status));
90 printf("sys_reset = 0x%02x\n", CPLD_READ(sys_reset));
91 printf("global_reset = 0x%02x\n", CPLD_READ(global_reset));
92 printf("res1 = 0x%02x\n", CPLD_READ(res1));
97 #ifndef CONFIG_SPL_BUILD
98 int do_cpld(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
103 return cmd_usage(cmdtp);
105 if (strcmp(argv[1], "reset") == 0) {
106 if (strcmp(argv[2], "altbank") == 0)
111 } else if (strcmp(argv[1], "dump") == 0) {
115 rc = cmd_usage(cmdtp);
121 cpld, CONFIG_SYS_MAXARGS, 1, do_cpld,
122 "Reset the board or alternate bank",
123 "reset - reset to default bank\n"
124 "cpld reset altbank - reset to alternate bank\n"
126 "cpld dump - display the CPLD registers\n"