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 | |
| 75 | int phytec_eeprom_data_init(struct phytec_eeprom_data *data, |
| 76 | int bus_num, int addr) |
| 77 | { |
| 78 | int ret, i; |
| 79 | unsigned int crc; |
| 80 | u8 *ptr; |
| 81 | const unsigned int payload_size = sizeof(struct phytec_eeprom_payload); |
| 82 | |
| 83 | if (!data) |
| 84 | data = &eeprom_data; |
| 85 | |
| 86 | ret = phytec_eeprom_read((u8 *)data, bus_num, addr, |
| 87 | payload_size, 0); |
| 88 | if (ret) |
| 89 | goto err; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 90 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 91 | if (data->payload.api_rev == 0xff) { |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 92 | pr_err("%s: EEPROM is not flashed. Prototype?\n", __func__); |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 93 | ret = -EINVAL; |
| 94 | goto err; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 95 | } |
| 96 | |
Daniel Schultz | a132b30 | 2024-04-19 08:55:39 -0700 | [diff] [blame] | 97 | ptr = (u8 *)data; |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 98 | for (i = 0; i < payload_size; ++i) |
Yannic Moog | 7bbbe18 | 2023-12-20 09:45:34 +0100 | [diff] [blame] | 99 | if (ptr[i] != 0x0) |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 100 | break; |
| 101 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 102 | if (i == payload_size) { |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 103 | pr_err("%s: EEPROM data is all zero. Erased?\n", __func__); |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 104 | ret = -EINVAL; |
| 105 | goto err; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /* We are done here for early revisions */ |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 109 | if (data->payload.api_rev <= PHYTEC_API_REV1) { |
| 110 | data->valid = true; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 111 | return 0; |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 112 | } |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 113 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 114 | crc = crc8(0, (const unsigned char *)&data->payload, payload_size); |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 115 | debug("%s: crc: %x\n", __func__, crc); |
| 116 | |
| 117 | if (crc) { |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 118 | pr_err("%s: CRC mismatch. EEPROM data is not usable.\n", |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 119 | __func__); |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 120 | ret = -EINVAL; |
| 121 | goto err; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 122 | } |
| 123 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 124 | data->valid = true; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 125 | return 0; |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 126 | err: |
| 127 | data->valid = false; |
| 128 | return ret; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void __maybe_unused phytec_print_som_info(struct phytec_eeprom_data *data) |
| 132 | { |
| 133 | struct phytec_api2_data *api2; |
| 134 | char pcb_sub_rev; |
| 135 | unsigned int ksp_no, sub_som_type1, sub_som_type2; |
| 136 | |
| 137 | if (!data) |
| 138 | data = &eeprom_data; |
| 139 | |
Yannic Moog | 51b9d53 | 2024-04-19 08:55:38 -0700 | [diff] [blame] | 140 | if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 141 | return; |
| 142 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 143 | api2 = &data->payload.data.data_api2; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 144 | |
| 145 | /* Calculate PCB subrevision */ |
| 146 | pcb_sub_rev = api2->pcb_sub_opt_rev & 0x0f; |
| 147 | pcb_sub_rev = pcb_sub_rev ? ((pcb_sub_rev - 1) + 'a') : ' '; |
| 148 | |
| 149 | /* print standard product string */ |
| 150 | if (api2->som_type <= 1) { |
| 151 | printf("SoM: %s-%03u-%s.%s PCB rev: %u%c\n", |
| 152 | phytec_som_type_str[api2->som_type], api2->som_no, |
| 153 | api2->opt, api2->bom_rev, api2->pcb_rev, pcb_sub_rev); |
| 154 | return; |
| 155 | } |
| 156 | /* print KSP/KSM string */ |
| 157 | if (api2->som_type <= 3) { |
| 158 | ksp_no = (api2->ksp_no << 8) | api2->som_no; |
| 159 | printf("SoM: %s-%u ", |
| 160 | phytec_som_type_str[api2->som_type], ksp_no); |
| 161 | /* print standard product based KSP/KSM strings */ |
| 162 | } else { |
| 163 | switch (api2->som_type) { |
| 164 | case 4: |
| 165 | sub_som_type1 = 0; |
| 166 | sub_som_type2 = 3; |
| 167 | break; |
| 168 | case 5: |
| 169 | sub_som_type1 = 0; |
| 170 | sub_som_type2 = 2; |
| 171 | break; |
| 172 | case 6: |
| 173 | sub_som_type1 = 1; |
| 174 | sub_som_type2 = 3; |
| 175 | break; |
| 176 | case 7: |
| 177 | sub_som_type1 = 1; |
| 178 | sub_som_type2 = 2; |
| 179 | break; |
| 180 | default: |
Yannic Moog | 46c507e | 2023-12-20 09:45:36 +0100 | [diff] [blame] | 181 | pr_err("%s: Invalid SoM type: %i", __func__, api2->som_type); |
| 182 | return; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | printf("SoM: %s-%03u-%s-%03u ", |
| 186 | phytec_som_type_str[sub_som_type1], |
| 187 | api2->som_no, phytec_som_type_str[sub_som_type2], |
| 188 | api2->ksp_no); |
| 189 | } |
| 190 | |
| 191 | printf("Option: %s BOM rev: %s PCB rev: %u%c\n", api2->opt, |
| 192 | api2->bom_rev, api2->pcb_rev, pcb_sub_rev); |
| 193 | } |
| 194 | |
| 195 | char * __maybe_unused phytec_get_opt(struct phytec_eeprom_data *data) |
| 196 | { |
| 197 | char *opt; |
| 198 | |
| 199 | if (!data) |
| 200 | data = &eeprom_data; |
| 201 | |
Yannic Moog | 51b9d53 | 2024-04-19 08:55:38 -0700 | [diff] [blame] | 202 | if (!data->valid) |
| 203 | return NULL; |
| 204 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 205 | if (data->payload.api_rev < PHYTEC_API_REV2) |
| 206 | opt = data->payload.data.data_api0.opt; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 207 | else |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 208 | opt = data->payload.data.data_api2.opt; |
Teresa Remmet | a6f8da5 | 2023-08-17 10:57:06 +0200 | [diff] [blame] | 209 | |
| 210 | return opt; |
| 211 | } |
Teresa Remmet | e3d3ac4 | 2023-08-17 10:57:10 +0200 | [diff] [blame] | 212 | |
| 213 | u8 __maybe_unused phytec_get_rev(struct phytec_eeprom_data *data) |
| 214 | { |
| 215 | struct phytec_api2_data *api2; |
| 216 | |
| 217 | if (!data) |
| 218 | data = &eeprom_data; |
| 219 | |
Yannic Moog | 51b9d53 | 2024-04-19 08:55:38 -0700 | [diff] [blame] | 220 | if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) |
Teresa Remmet | e3d3ac4 | 2023-08-17 10:57:10 +0200 | [diff] [blame] | 221 | return PHYTEC_EEPROM_INVAL; |
| 222 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 223 | api2 = &data->payload.data.data_api2; |
Teresa Remmet | e3d3ac4 | 2023-08-17 10:57:10 +0200 | [diff] [blame] | 224 | |
| 225 | return api2->pcb_rev; |
| 226 | } |
Yannic Moog | 5dd7f7c | 2023-12-20 09:45:35 +0100 | [diff] [blame] | 227 | |
Benjamin Hahn | 455dcf7 | 2024-03-06 17:18:31 +0100 | [diff] [blame] | 228 | u8 __maybe_unused phytec_get_som_type(struct phytec_eeprom_data *data) |
| 229 | { |
| 230 | if (!data) |
| 231 | data = &eeprom_data; |
Yannic Moog | 51b9d53 | 2024-04-19 08:55:38 -0700 | [diff] [blame] | 232 | |
| 233 | if (!data->valid || data->payload.api_rev < PHYTEC_API_REV2) |
Benjamin Hahn | 455dcf7 | 2024-03-06 17:18:31 +0100 | [diff] [blame] | 234 | return PHYTEC_EEPROM_INVAL; |
| 235 | |
Yannic Moog | db2dfb0 | 2024-04-19 08:55:37 -0700 | [diff] [blame] | 236 | return data->payload.data.data_api2.som_type; |
Benjamin Hahn | 455dcf7 | 2024-03-06 17:18:31 +0100 | [diff] [blame] | 237 | } |
| 238 | |
Daniel Schultz | a440ec2 | 2024-04-19 08:55:36 -0700 | [diff] [blame] | 239 | #if IS_ENABLED(CONFIG_CMD_EXTENSION) |
| 240 | struct extension *phytec_add_extension(const char *name, const char *overlay, |
| 241 | const char *other) |
| 242 | { |
| 243 | struct extension *extension; |
| 244 | |
| 245 | if (strlen(overlay) > sizeof(extension->overlay)) { |
| 246 | pr_err("Overlay name %s is longer than %lu.\n", overlay, |
| 247 | sizeof(extension->overlay)); |
| 248 | return NULL; |
| 249 | } |
| 250 | |
| 251 | extension = calloc(1, sizeof(struct extension)); |
| 252 | snprintf(extension->name, sizeof(extension->name), name); |
| 253 | snprintf(extension->overlay, sizeof(extension->overlay), overlay); |
| 254 | snprintf(extension->other, sizeof(extension->other), other); |
| 255 | snprintf(extension->owner, sizeof(extension->owner), "PHYTEC"); |
| 256 | |
| 257 | return extension; |
| 258 | } |
| 259 | #endif /* IS_ENABLED(CONFIG_CMD_EXTENSION) */ |
| 260 | |
Yannic Moog | 5dd7f7c | 2023-12-20 09:45:35 +0100 | [diff] [blame] | 261 | #else |
| 262 | |
| 263 | inline int phytec_eeprom_data_setup(struct phytec_eeprom_data *data, |
| 264 | int bus_num, int addr) |
| 265 | { |
| 266 | return PHYTEC_EEPROM_INVAL; |
| 267 | } |
| 268 | |
| 269 | inline int phytec_eeprom_data_setup_fallback(struct phytec_eeprom_data *data, |
| 270 | int bus_num, int addr, |
| 271 | int addr_fallback) |
| 272 | { |
| 273 | return PHYTEC_EEPROM_INVAL; |
| 274 | } |
| 275 | |
| 276 | inline int phytec_eeprom_data_init(struct phytec_eeprom_data *data, |
| 277 | int bus_num, int addr) |
| 278 | { |
| 279 | return PHYTEC_EEPROM_INVAL; |
| 280 | } |
| 281 | |
| 282 | inline void __maybe_unused phytec_print_som_info(struct phytec_eeprom_data *data) |
| 283 | { |
| 284 | } |
| 285 | |
| 286 | inline char *__maybe_unused phytec_get_opt(struct phytec_eeprom_data *data) |
| 287 | { |
| 288 | return NULL; |
| 289 | } |
| 290 | |
| 291 | u8 __maybe_unused phytec_get_rev(struct phytec_eeprom_data *data) |
| 292 | { |
| 293 | return PHYTEC_EEPROM_INVAL; |
| 294 | } |
| 295 | |
Benjamin Hahn | 69ea0e3 | 2024-03-12 10:39:11 +0100 | [diff] [blame] | 296 | u8 __maybe_unused phytec_get_som_type(struct phytec_eeprom_data *data) |
| 297 | { |
| 298 | return PHYTEC_EEPROM_INVAL; |
| 299 | } |
Daniel Schultz | a440ec2 | 2024-04-19 08:55:36 -0700 | [diff] [blame] | 300 | |
| 301 | #if IS_ENABLED(CONFIG_CMD_EXTENSION) |
| 302 | inline struct extension *phytec_add_extension(const char *name, |
| 303 | const char *overlay, |
| 304 | const char *other) |
| 305 | { |
| 306 | return NULL; |
| 307 | } |
| 308 | #endif /* IS_ENABLED(CONFIG_CMD_EXTENSION) */ |
Benjamin Hahn | 69ea0e3 | 2024-03-12 10:39:11 +0100 | [diff] [blame] | 309 | |
Yannic Moog | 5dd7f7c | 2023-12-20 09:45:35 +0100 | [diff] [blame] | 310 | #endif /* IS_ENABLED(CONFIG_PHYTEC_SOM_DETECTION) */ |