2 * Copyright 2014 Freescale Semiconductor
4 * SPDX-License-Identifier: GPL-2.0+
6 * This file provides support for the board-specific CPLD used on some Freescale
9 * The following macros need to be defined:
11 * CONFIG_SYS_CPLD_BASE-The virtual address of the base of the CPLD register map
20 u8 cpld_read(unsigned int reg)
22 void *p = (void *)CONFIG_SYS_CPLD_BASE;
27 void cpld_write(unsigned int reg, u8 value)
29 void *p = (void *)CONFIG_SYS_CPLD_BASE;
31 out_8(p + reg, value);
35 * Set the boot bank to the alternate bank
37 void cpld_set_altbank(void)
39 u8 reg = CPLD_READ(flash_ctl_status);
41 reg = (reg & ~CPLD_BANK_SEL_MASK) | CPLD_LBMAP_ALTBANK;
43 CPLD_WRITE(flash_ctl_status, reg);
44 CPLD_WRITE(reset_ctl1, CPLD_LBMAP_RESET);
48 * Set the boot bank to the default bank
50 void cpld_set_defbank(void)
52 u8 reg = CPLD_READ(flash_ctl_status);
54 reg = (reg & ~CPLD_BANK_SEL_MASK) | CPLD_LBMAP_DFLTBANK;
56 CPLD_WRITE(flash_ctl_status, reg);
57 CPLD_WRITE(reset_ctl1, CPLD_LBMAP_RESET);
61 static void cpld_dump_regs(void)
63 printf("cpld_ver = 0x%02x\n", CPLD_READ(cpld_ver));
64 printf("cpld_ver_sub = 0x%02x\n", CPLD_READ(cpld_ver_sub));
65 printf("hw_ver = 0x%02x\n", CPLD_READ(hw_ver));
66 printf("sw_ver = 0x%02x\n", CPLD_READ(sw_ver));
67 printf("reset_ctl1 = 0x%02x\n", CPLD_READ(reset_ctl1));
68 printf("reset_ctl2 = 0x%02x\n", CPLD_READ(reset_ctl2));
69 printf("int_status = 0x%02x\n", CPLD_READ(int_status));
70 printf("flash_ctl_status = 0x%02x\n", CPLD_READ(flash_ctl_status));
71 printf("fan_ctl_status = 0x%02x\n", CPLD_READ(fan_ctl_status));
72 #if defined(CONFIG_TARGET_T1040D4D4RDB) || defined(CONFIG_TARGET_T1042D4RDB)
73 printf("int_mask = 0x%02x\n", CPLD_READ(int_mask));
75 printf("led_ctl_status = 0x%02x\n", CPLD_READ(led_ctl_status));
77 printf("sfp_ctl_status = 0x%02x\n", CPLD_READ(sfp_ctl_status));
78 printf("misc_ctl_status = 0x%02x\n", CPLD_READ(misc_ctl_status));
79 printf("boot_override = 0x%02x\n", CPLD_READ(boot_override));
80 printf("boot_config1 = 0x%02x\n", CPLD_READ(boot_config1));
81 printf("boot_config2 = 0x%02x\n", CPLD_READ(boot_config2));
86 int do_cpld(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
91 return cmd_usage(cmdtp);
93 if (strcmp(argv[1], "reset") == 0) {
94 if (strcmp(argv[2], "altbank") == 0)
99 } else if (strcmp(argv[1], "dump") == 0) {
103 rc = cmd_usage(cmdtp);
109 cpld, CONFIG_SYS_MAXARGS, 1, do_cpld,
110 "Reset the board or alternate bank",
111 "reset - hard reset to default bank\n"
112 "cpld reset altbank - reset to alternate bank\n"
114 "cpld dump - display the CPLD registers\n"