Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | // SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright (C) 2023 PHYTEC Messtechnik GmbH * Author: Teresa Remmet <t.remmet@phytec.de> */ #include <common.h> #include <dm/device.h> #include <dm/uclass.h> #include <i2c.h> #include <u-boot/crc.h> #include <malloc.h> #include <extension_board.h> #include "phytec_som_detection.h" struct phytec_eeprom_data eeprom_data; #if IS_ENABLED(CONFIG_PHYTEC_SOM_DETECTION) int phytec_eeprom_data_setup_fallback(struct phytec_eeprom_data *data, int bus_num, int addr, int addr_fallback) { int ret; ret = phytec_eeprom_data_init(data, bus_num, addr); if (ret) { pr_err("%s: init failed. Trying fall back address 0x%x\n", __func__, addr_fallback); ret = phytec_eeprom_data_init(data, bus_num, addr_fallback); } if (ret) pr_err("%s: EEPROM data init failed\n", __func__); return ret; } int phytec_eeprom_data_setup(struct phytec_eeprom_data *data, int bus_num, int addr) { int ret; ret = phytec_eeprom_data_init(data, bus_num, addr); if (ret) pr_err("%s: EEPROM data init failed\n", __func__); return ret; } int phytec_eeprom_data_init(struct phytec_eeprom_data *data, int bus_num, int addr) { int ret, i; unsigned int crc; u8 *ptr; const unsigned int payload_size = sizeof(struct phytec_eeprom_payload); if (!data) data = &eeprom_data; #if CONFIG_IS_ENABLED(DM_I2C) struct udevice *dev; ret = i2c_get_chip_for_busnum(bus_num, addr, 2, &dev); if (ret) { pr_err("%s: i2c EEPROM not found: %i.\n", __func__, ret); goto err; } ret = dm_i2c_read(dev, 0, (uint8_t *)data, payload_size); if (ret) { pr_err("%s: Unable to read EEPROM data: %i\n", __func__, ret); goto err; } #else i2c_set_bus_num(bus_num); ret = i2c_read(addr, 0, 2, (uint8_t *)data, sizeof(struct phytec_eeprom_data)); #endif if (data->payload.api_rev == 0xff) { pr_err("%s: EEPROM is not flashed. Prototype?\n", __func__); ret = -EINVAL; goto err; } ptr = (u8 *)data; for (i = 0; i < payload_size; ++i) if (ptr[i] != 0x0) break; if (i == payload_size) { pr_err("%s: EEPROM data is all zero. Erased?\n", __func__); ret = -EINVAL; goto err; } /* We are done here for early revisions */ if (data->payload.api_rev <= PHYTEC_API_REV1) { data->valid = true; return 0; } crc = crc8(0, (const unsigned char *)&data->payload, payload_size); debug("%s: crc: %x\n", __func__, crc); if (crc) { pr_err("%s: CRC mismatch. EEPROM data is not usable.\n", __func__); ret = -EINVAL; goto err; } data->valid = true; return 0; err: data->valid = false; return ret; } void __maybe_unused phytec_print_som_info(struct phytec_eeprom_data *data) { struct phytec_api2_data *api2; char pcb_sub_rev; unsigned int ksp_no, sub_som_type1, sub_som_type2; if (!data) data = &eeprom_data; if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) return; api2 = &data->payload.data.data_api2; /* Calculate PCB subrevision */ pcb_sub_rev = api2->pcb_sub_opt_rev & 0x0f; pcb_sub_rev = pcb_sub_rev ? ((pcb_sub_rev - 1) + 'a') : ' '; /* print standard product string */ if (api2->som_type <= 1) { printf("SoM: %s-%03u-%s.%s PCB rev: %u%c\n", phytec_som_type_str[api2->som_type], api2->som_no, api2->opt, api2->bom_rev, api2->pcb_rev, pcb_sub_rev); return; } /* print KSP/KSM string */ if (api2->som_type <= 3) { ksp_no = (api2->ksp_no << 8) | api2->som_no; printf("SoM: %s-%u ", phytec_som_type_str[api2->som_type], ksp_no); /* print standard product based KSP/KSM strings */ } else { switch (api2->som_type) { case 4: sub_som_type1 = 0; sub_som_type2 = 3; break; case 5: sub_som_type1 = 0; sub_som_type2 = 2; break; case 6: sub_som_type1 = 1; sub_som_type2 = 3; break; case 7: sub_som_type1 = 1; sub_som_type2 = 2; break; default: pr_err("%s: Invalid SoM type: %i", __func__, api2->som_type); return; }; printf("SoM: %s-%03u-%s-%03u ", phytec_som_type_str[sub_som_type1], api2->som_no, phytec_som_type_str[sub_som_type2], api2->ksp_no); } printf("Option: %s BOM rev: %s PCB rev: %u%c\n", api2->opt, api2->bom_rev, api2->pcb_rev, pcb_sub_rev); } char * __maybe_unused phytec_get_opt(struct phytec_eeprom_data *data) { char *opt; if (!data) data = &eeprom_data; if (!data->valid) return NULL; if (data->payload.api_rev < PHYTEC_API_REV2) opt = data->payload.data.data_api0.opt; else opt = data->payload.data.data_api2.opt; return opt; } u8 __maybe_unused phytec_get_rev(struct phytec_eeprom_data *data) { struct phytec_api2_data *api2; if (!data) data = &eeprom_data; if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) return PHYTEC_EEPROM_INVAL; api2 = &data->payload.data.data_api2; return api2->pcb_rev; } u8 __maybe_unused phytec_get_som_type(struct phytec_eeprom_data *data) { if (!data) data = &eeprom_data; if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) return PHYTEC_EEPROM_INVAL; return data->payload.data.data_api2.som_type; } #if IS_ENABLED(CONFIG_CMD_EXTENSION) struct extension *phytec_add_extension(const char *name, const char *overlay, const char *other) { struct extension *extension; if (strlen(overlay) > sizeof(extension->overlay)) { pr_err("Overlay name %s is longer than %lu.\n", overlay, sizeof(extension->overlay)); return NULL; } extension = calloc(1, sizeof(struct extension)); snprintf(extension->name, sizeof(extension->name), name); snprintf(extension->overlay, sizeof(extension->overlay), overlay); snprintf(extension->other, sizeof(extension->other), other); snprintf(extension->owner, sizeof(extension->owner), "PHYTEC"); return extension; } #endif /* IS_ENABLED(CONFIG_CMD_EXTENSION) */ #else inline int phytec_eeprom_data_setup(struct phytec_eeprom_data *data, int bus_num, int addr) { return PHYTEC_EEPROM_INVAL; } inline int phytec_eeprom_data_setup_fallback(struct phytec_eeprom_data *data, int bus_num, int addr, int addr_fallback) { return PHYTEC_EEPROM_INVAL; } inline int phytec_eeprom_data_init(struct phytec_eeprom_data *data, int bus_num, int addr) { return PHYTEC_EEPROM_INVAL; } inline void __maybe_unused phytec_print_som_info(struct phytec_eeprom_data *data) { } inline char *__maybe_unused phytec_get_opt(struct phytec_eeprom_data *data) { return NULL; } u8 __maybe_unused phytec_get_rev(struct phytec_eeprom_data *data) { return PHYTEC_EEPROM_INVAL; } u8 __maybe_unused phytec_get_som_type(struct phytec_eeprom_data *data) { return PHYTEC_EEPROM_INVAL; } #if IS_ENABLED(CONFIG_CMD_EXTENSION) inline struct extension *phytec_add_extension(const char *name, const char *overlay, const char *other) { return NULL; } #endif /* IS_ENABLED(CONFIG_CMD_EXTENSION) */ #endif /* IS_ENABLED(CONFIG_PHYTEC_SOM_DETECTION) */ |