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