Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Cortina CS4315/CS4340 10G PHY drivers |
| 4 | * |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 5 | * Copyright 2014 Freescale Semiconductor, Inc. |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 6 | * Copyright 2018 NXP |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 7 | * |
| 8 | */ |
| 9 | |
| 10 | #include <config.h> |
| 11 | #include <common.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame^] | 12 | #include <log.h> |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 13 | #include <malloc.h> |
| 14 | #include <linux/ctype.h> |
| 15 | #include <linux/string.h> |
| 16 | #include <linux/err.h> |
| 17 | #include <phy.h> |
| 18 | #include <cortina.h> |
| 19 | #ifdef CONFIG_SYS_CORTINA_FW_IN_NAND |
| 20 | #include <nand.h> |
| 21 | #elif defined(CONFIG_SYS_CORTINA_FW_IN_SPIFLASH) |
| 22 | #include <spi_flash.h> |
| 23 | #elif defined(CONFIG_SYS_CORTINA_FW_IN_MMC) |
| 24 | #include <mmc.h> |
| 25 | #endif |
| 26 | |
| 27 | #ifndef CONFIG_PHYLIB_10G |
| 28 | #error The Cortina PHY needs 10G support |
| 29 | #endif |
| 30 | |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 31 | #ifndef CORTINA_NO_FW_UPLOAD |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 32 | struct cortina_reg_config cortina_reg_cfg[] = { |
| 33 | /* CS4315_enable_sr_mode */ |
| 34 | {VILLA_GLOBAL_MSEQCLKCTRL, 0x8004}, |
| 35 | {VILLA_MSEQ_OPTIONS, 0xf}, |
| 36 | {VILLA_MSEQ_PC, 0x0}, |
| 37 | {VILLA_MSEQ_BANKSELECT, 0x4}, |
| 38 | {VILLA_LINE_SDS_COMMON_SRX0_RX_CPA, 0x55}, |
| 39 | {VILLA_LINE_SDS_COMMON_SRX0_RX_LOOP_FILTER, 0x30}, |
| 40 | {VILLA_DSP_SDS_SERDES_SRX_DFE0_SELECT, 0x1}, |
| 41 | {VILLA_DSP_SDS_DSP_COEF_DFE0_SELECT, 0x2}, |
| 42 | {VILLA_LINE_SDS_COMMON_SRX0_RX_CPB, 0x2003}, |
| 43 | {VILLA_DSP_SDS_SERDES_SRX_FFE_DELAY_CTRL, 0xF047}, |
| 44 | {VILLA_MSEQ_ENABLE_MSB, 0x0000}, |
| 45 | {VILLA_MSEQ_SPARE21_LSB, 0x6}, |
| 46 | {VILLA_MSEQ_RESET_COUNT_LSB, 0x0}, |
| 47 | {VILLA_MSEQ_SPARE12_MSB, 0x0000}, |
| 48 | /* |
| 49 | * to invert the receiver path, uncomment the next line |
| 50 | * write (VILLA_MSEQ_SPARE12_MSB, 0x4000) |
| 51 | * |
| 52 | * SPARE2_LSB is used to configure the device while in sr mode to |
| 53 | * enable power savings and to use the optical module LOS signal. |
| 54 | * in power savings mode, the internal prbs checker can not be used. |
| 55 | * if the optical module LOS signal is used as an input to the micro |
| 56 | * code, then the micro code will wait until the optical module |
| 57 | * LOS = 0 before turning on the adaptive equalizer. |
| 58 | * Setting SPARE2_LSB bit 0 to 1 places the devie in power savings mode |
| 59 | * while setting bit 0 to 0 disables power savings mode. |
| 60 | * Setting SPARE2_LSB bit 2 to 0 configures the device to use the |
| 61 | * optical module LOS signal while setting bit 2 to 1 configures the |
| 62 | * device so that it will ignore the optical module LOS SPARE2_LSB = 0 |
| 63 | */ |
| 64 | |
| 65 | /* enable power savings, ignore optical module LOS */ |
| 66 | {VILLA_MSEQ_SPARE2_LSB, 0x5}, |
| 67 | |
| 68 | {VILLA_MSEQ_SPARE7_LSB, 0x1e}, |
| 69 | {VILLA_MSEQ_BANKSELECT, 0x4}, |
| 70 | {VILLA_MSEQ_SPARE9_LSB, 0x2}, |
| 71 | {VILLA_MSEQ_SPARE3_LSB, 0x0F53}, |
| 72 | {VILLA_MSEQ_SPARE3_MSB, 0x2006}, |
| 73 | {VILLA_MSEQ_SPARE8_LSB, 0x3FF7}, |
| 74 | {VILLA_MSEQ_SPARE8_MSB, 0x0A46}, |
| 75 | {VILLA_MSEQ_COEF8_FFE0_LSB, 0xD500}, |
| 76 | {VILLA_MSEQ_COEF8_FFE1_LSB, 0x0200}, |
| 77 | {VILLA_MSEQ_COEF8_FFE2_LSB, 0xBA00}, |
| 78 | {VILLA_MSEQ_COEF8_FFE3_LSB, 0x0100}, |
| 79 | {VILLA_MSEQ_COEF8_FFE4_LSB, 0x0300}, |
| 80 | {VILLA_MSEQ_COEF8_FFE5_LSB, 0x0300}, |
| 81 | {VILLA_MSEQ_COEF8_DFE0_LSB, 0x0700}, |
| 82 | {VILLA_MSEQ_COEF8_DFE0N_LSB, 0x0E00}, |
| 83 | {VILLA_MSEQ_COEF8_DFE1_LSB, 0x0B00}, |
| 84 | {VILLA_DSP_SDS_DSP_COEF_LARGE_LEAK, 0x2}, |
| 85 | {VILLA_DSP_SDS_SERDES_SRX_DAC_ENABLEB_LSB, 0xD000}, |
| 86 | {VILLA_MSEQ_POWER_DOWN_LSB, 0xFFFF}, |
| 87 | {VILLA_MSEQ_POWER_DOWN_MSB, 0x0}, |
| 88 | {VILLA_MSEQ_CAL_RX_SLICER, 0x80}, |
| 89 | {VILLA_DSP_SDS_SERDES_SRX_DAC_BIAS_SELECT1_MSB, 0x3f}, |
| 90 | {VILLA_GLOBAL_MSEQCLKCTRL, 0x4}, |
| 91 | {VILLA_MSEQ_OPTIONS, 0x7}, |
| 92 | |
| 93 | /* set up min value for ffe1 */ |
| 94 | {VILLA_MSEQ_COEF_INIT_SEL, 0x2}, |
| 95 | {VILLA_DSP_SDS_DSP_PRECODEDINITFFE21, 0x41}, |
| 96 | |
| 97 | /* CS4315_sr_rx_pre_eq_set_4in */ |
| 98 | {VILLA_GLOBAL_MSEQCLKCTRL, 0x8004}, |
| 99 | {VILLA_MSEQ_OPTIONS, 0xf}, |
| 100 | {VILLA_MSEQ_BANKSELECT, 0x4}, |
| 101 | {VILLA_MSEQ_PC, 0x0}, |
| 102 | |
| 103 | /* for lengths from 3.5 to 4.5inches */ |
| 104 | {VILLA_MSEQ_SERDES_PARAM_LSB, 0x0306}, |
| 105 | {VILLA_MSEQ_SPARE25_LSB, 0x0306}, |
| 106 | {VILLA_MSEQ_SPARE21_LSB, 0x2}, |
| 107 | {VILLA_MSEQ_SPARE23_LSB, 0x2}, |
| 108 | {VILLA_MSEQ_CAL_RX_DFE_EQ, 0x0}, |
| 109 | |
| 110 | {VILLA_GLOBAL_MSEQCLKCTRL, 0x4}, |
| 111 | {VILLA_MSEQ_OPTIONS, 0x7}, |
| 112 | |
| 113 | /* CS4315_rx_drive_4inch */ |
| 114 | /* for length 4inches */ |
| 115 | {VILLA_GLOBAL_VILLA2_COMPATIBLE, 0x0000}, |
| 116 | {VILLA_HOST_SDS_COMMON_STX0_TX_OUTPUT_CTRLA, 0x3023}, |
| 117 | {VILLA_LINE_SDS_COMMON_STX0_TX_OUTPUT_CTRLB, 0xc01E}, |
| 118 | |
| 119 | /* CS4315_tx_drive_4inch */ |
| 120 | /* for length 4inches */ |
| 121 | {VILLA_GLOBAL_VILLA2_COMPATIBLE, 0x0000}, |
| 122 | {VILLA_LINE_SDS_COMMON_STX0_TX_OUTPUT_CTRLA, 0x3023}, |
| 123 | {VILLA_LINE_SDS_COMMON_STX0_TX_OUTPUT_CTRLB, 0xc01E}, |
| 124 | }; |
| 125 | |
| 126 | void cs4340_upload_firmware(struct phy_device *phydev) |
| 127 | { |
| 128 | char line_temp[0x50] = {0}; |
| 129 | char reg_addr[0x50] = {0}; |
| 130 | char reg_data[0x50] = {0}; |
| 131 | int i, line_cnt = 0, column_cnt = 0; |
| 132 | struct cortina_reg_config fw_temp; |
| 133 | char *addr = NULL; |
| 134 | |
| 135 | #if defined(CONFIG_SYS_CORTINA_FW_IN_NOR) || \ |
| 136 | defined(CONFIG_SYS_CORTINA_FW_IN_REMOTE) |
| 137 | |
| 138 | addr = (char *)CONFIG_CORTINA_FW_ADDR; |
| 139 | #elif defined(CONFIG_SYS_CORTINA_FW_IN_NAND) |
| 140 | int ret; |
| 141 | size_t fw_length = CONFIG_CORTINA_FW_LENGTH; |
| 142 | |
| 143 | addr = malloc(CONFIG_CORTINA_FW_LENGTH); |
Grygorii Strashko | d1e68ec | 2017-06-26 19:12:59 -0500 | [diff] [blame] | 144 | ret = nand_read(get_nand_dev_by_index(0), |
| 145 | (loff_t)CONFIG_CORTINA_FW_ADDR, |
Scott Wood | 2c1b7e1 | 2016-05-30 13:57:55 -0500 | [diff] [blame] | 146 | &fw_length, (u_char *)addr); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 147 | if (ret == -EUCLEAN) { |
| 148 | printf("NAND read of Cortina firmware at 0x%x failed %d\n", |
| 149 | CONFIG_CORTINA_FW_ADDR, ret); |
| 150 | } |
| 151 | #elif defined(CONFIG_SYS_CORTINA_FW_IN_SPIFLASH) |
| 152 | int ret; |
| 153 | struct spi_flash *ucode_flash; |
| 154 | |
| 155 | addr = malloc(CONFIG_CORTINA_FW_LENGTH); |
| 156 | ucode_flash = spi_flash_probe(CONFIG_ENV_SPI_BUS, CONFIG_ENV_SPI_CS, |
| 157 | CONFIG_ENV_SPI_MAX_HZ, CONFIG_ENV_SPI_MODE); |
| 158 | if (!ucode_flash) { |
| 159 | puts("SF: probe for Cortina ucode failed\n"); |
| 160 | } else { |
| 161 | ret = spi_flash_read(ucode_flash, CONFIG_CORTINA_FW_ADDR, |
| 162 | CONFIG_CORTINA_FW_LENGTH, addr); |
| 163 | if (ret) |
| 164 | puts("SF: read for Cortina ucode failed\n"); |
| 165 | spi_flash_free(ucode_flash); |
| 166 | } |
| 167 | #elif defined(CONFIG_SYS_CORTINA_FW_IN_MMC) |
| 168 | int dev = CONFIG_SYS_MMC_ENV_DEV; |
| 169 | u32 cnt = CONFIG_CORTINA_FW_LENGTH / 512; |
| 170 | u32 blk = CONFIG_CORTINA_FW_ADDR / 512; |
| 171 | struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV); |
| 172 | |
| 173 | if (!mmc) { |
| 174 | puts("Failed to find MMC device for Cortina ucode\n"); |
| 175 | } else { |
| 176 | addr = malloc(CONFIG_CORTINA_FW_LENGTH); |
| 177 | printf("MMC read: dev # %u, block # %u, count %u ...\n", |
| 178 | dev, blk, cnt); |
| 179 | mmc_init(mmc); |
Yinbo Zhu | 5092a16 | 2019-06-11 14:29:03 +0800 | [diff] [blame] | 180 | #ifdef CONFIG_BLK |
| 181 | (void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt, |
| 182 | addr); |
| 183 | #else |
Stephen Warren | e73f296 | 2015-12-07 11:38:48 -0700 | [diff] [blame] | 184 | (void)mmc->block_dev.block_read(&mmc->block_dev, blk, cnt, |
| 185 | addr); |
Yinbo Zhu | 5092a16 | 2019-06-11 14:29:03 +0800 | [diff] [blame] | 186 | #endif |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 187 | } |
| 188 | #endif |
| 189 | |
| 190 | while (*addr != 'Q') { |
| 191 | i = 0; |
| 192 | |
| 193 | while (*addr != 0x0a) { |
| 194 | line_temp[i++] = *addr++; |
| 195 | if (0x50 < i) { |
pankaj chauhan | 787ea07 | 2015-03-20 19:28:17 -0700 | [diff] [blame] | 196 | printf("Not found Cortina PHY ucode at 0x%p\n", |
| 197 | (char *)CONFIG_CORTINA_FW_ADDR); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 198 | return; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | addr++; /* skip '\n' */ |
| 203 | line_cnt++; |
| 204 | column_cnt = i; |
| 205 | line_temp[column_cnt] = '\0'; |
| 206 | |
| 207 | if (CONFIG_CORTINA_FW_LENGTH < line_cnt) |
| 208 | return; |
| 209 | |
| 210 | for (i = 0; i < column_cnt; i++) { |
| 211 | if (isspace(line_temp[i++])) |
| 212 | break; |
| 213 | } |
| 214 | |
| 215 | memcpy(reg_addr, line_temp, i); |
| 216 | memcpy(reg_data, &line_temp[i], column_cnt - i); |
| 217 | strim(reg_addr); |
| 218 | strim(reg_data); |
| 219 | fw_temp.reg_addr = (simple_strtoul(reg_addr, NULL, 0)) & 0xffff; |
| 220 | fw_temp.reg_value = (simple_strtoul(reg_data, NULL, 0)) & |
| 221 | 0xffff; |
| 222 | phy_write(phydev, 0x00, fw_temp.reg_addr, fw_temp.reg_value); |
| 223 | } |
| 224 | } |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 225 | #endif |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 226 | |
| 227 | int cs4340_phy_init(struct phy_device *phydev) |
| 228 | { |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 229 | #ifndef CORTINA_NO_FW_UPLOAD |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 230 | int timeout = 100; /* 100ms */ |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 231 | #endif |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 232 | int reg_value; |
| 233 | |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 234 | /* |
| 235 | * Cortina phy has provision to store |
| 236 | * phy firmware in attached dedicated EEPROM. |
| 237 | * Boards designed with EEPROM attached to Cortina |
| 238 | * does not require FW upload. |
| 239 | */ |
| 240 | #ifndef CORTINA_NO_FW_UPLOAD |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 241 | /* step1: BIST test */ |
| 242 | phy_write(phydev, 0x00, VILLA_GLOBAL_MSEQCLKCTRL, 0x0004); |
| 243 | phy_write(phydev, 0x00, VILLA_GLOBAL_LINE_SOFT_RESET, 0x0000); |
| 244 | phy_write(phydev, 0x00, VILLA_GLOBAL_BIST_CONTROL, 0x0001); |
| 245 | while (--timeout) { |
| 246 | reg_value = phy_read(phydev, 0x00, VILLA_GLOBAL_BIST_STATUS); |
| 247 | if (reg_value & mseq_edc_bist_done) { |
| 248 | if (0 == (reg_value & mseq_edc_bist_fail)) |
| 249 | break; |
| 250 | } |
| 251 | udelay(1000); |
| 252 | } |
| 253 | |
| 254 | if (!timeout) { |
| 255 | printf("%s BIST mseq_edc_bist_done timeout!\n", __func__); |
| 256 | return -1; |
| 257 | } |
| 258 | |
| 259 | /* setp2: upload ucode */ |
| 260 | cs4340_upload_firmware(phydev); |
Priyanka Jain | 18993c2 | 2018-01-30 12:11:08 +0530 | [diff] [blame] | 261 | #endif |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 262 | reg_value = phy_read(phydev, 0x00, VILLA_GLOBAL_DWNLD_CHECKSUM_STATUS); |
| 263 | if (reg_value) { |
| 264 | debug("%s checksum status failed.\n", __func__); |
| 265 | return -1; |
| 266 | } |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | int cs4340_config(struct phy_device *phydev) |
| 272 | { |
| 273 | cs4340_phy_init(phydev); |
| 274 | return 0; |
| 275 | } |
| 276 | |
Shaohui Xie | be799dd | 2016-01-28 15:56:36 +0800 | [diff] [blame] | 277 | int cs4340_probe(struct phy_device *phydev) |
| 278 | { |
| 279 | phydev->flags = PHY_FLAG_BROKEN_RESET; |
| 280 | return 0; |
| 281 | } |
| 282 | |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 283 | int cs4340_startup(struct phy_device *phydev) |
| 284 | { |
| 285 | phydev->link = 1; |
| 286 | |
| 287 | /* For now just lie and say it's 10G all the time */ |
| 288 | phydev->speed = SPEED_10000; |
| 289 | phydev->duplex = DUPLEX_FULL; |
| 290 | return 0; |
| 291 | } |
| 292 | |
Vicentiu Galanopulo | 33f68aa | 2018-05-02 06:23:38 -0500 | [diff] [blame] | 293 | int cs4223_phy_init(struct phy_device *phydev) |
| 294 | { |
| 295 | int reg_value; |
| 296 | |
| 297 | reg_value = phy_read(phydev, 0x00, CS4223_EEPROM_STATUS); |
| 298 | if (!(reg_value & CS4223_EEPROM_FIRMWARE_LOADDONE)) { |
| 299 | printf("%s CS4223 Firmware not present in EERPOM\n", __func__); |
| 300 | return -ENOSYS; |
| 301 | } |
| 302 | |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | int cs4223_config(struct phy_device *phydev) |
| 307 | { |
| 308 | return cs4223_phy_init(phydev); |
| 309 | } |
| 310 | |
| 311 | int cs4223_probe(struct phy_device *phydev) |
| 312 | { |
| 313 | phydev->flags = PHY_FLAG_BROKEN_RESET; |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | int cs4223_startup(struct phy_device *phydev) |
| 318 | { |
| 319 | phydev->link = 1; |
| 320 | phydev->speed = SPEED_10000; |
| 321 | phydev->duplex = DUPLEX_FULL; |
| 322 | return 0; |
| 323 | } |
| 324 | |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 325 | struct phy_driver cs4340_driver = { |
| 326 | .name = "Cortina CS4315/CS4340", |
| 327 | .uid = PHY_UID_CS4340, |
| 328 | .mask = 0xfffffff0, |
| 329 | .features = PHY_10G_FEATURES, |
| 330 | .mmds = (MDIO_DEVS_PMAPMD | MDIO_DEVS_PCS | |
| 331 | MDIO_DEVS_PHYXS | MDIO_DEVS_AN | |
| 332 | MDIO_DEVS_VEND1 | MDIO_DEVS_VEND2), |
| 333 | .config = &cs4340_config, |
Shaohui Xie | be799dd | 2016-01-28 15:56:36 +0800 | [diff] [blame] | 334 | .probe = &cs4340_probe, |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 335 | .startup = &cs4340_startup, |
| 336 | .shutdown = &gen10g_shutdown, |
| 337 | }; |
| 338 | |
Vicentiu Galanopulo | 33f68aa | 2018-05-02 06:23:38 -0500 | [diff] [blame] | 339 | struct phy_driver cs4223_driver = { |
| 340 | .name = "Cortina CS4223", |
| 341 | .uid = PHY_UID_CS4223, |
| 342 | .mask = 0x0ffff00f, |
| 343 | .features = PHY_10G_FEATURES, |
| 344 | .mmds = (MDIO_DEVS_PMAPMD | MDIO_DEVS_PCS | |
| 345 | MDIO_DEVS_AN), |
| 346 | .config = &cs4223_config, |
| 347 | .probe = &cs4223_probe, |
| 348 | .startup = &cs4223_startup, |
| 349 | .shutdown = &gen10g_shutdown, |
| 350 | }; |
| 351 | |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 352 | int phy_cortina_init(void) |
| 353 | { |
| 354 | phy_register(&cs4340_driver); |
Vicentiu Galanopulo | 33f68aa | 2018-05-02 06:23:38 -0500 | [diff] [blame] | 355 | phy_register(&cs4223_driver); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 356 | return 0; |
| 357 | } |
| 358 | |
| 359 | int get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id) |
| 360 | { |
| 361 | int phy_reg; |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 362 | |
| 363 | /* Cortina PHY has non-standard offset of PHY ID registers */ |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 364 | phy_reg = bus->read(bus, addr, 0, VILLA_GLOBAL_CHIP_ID_LSB); |
| 365 | if (phy_reg < 0) |
| 366 | return -EIO; |
| 367 | *phy_id = (phy_reg & 0xffff) << 16; |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 368 | |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 369 | phy_reg = bus->read(bus, addr, 0, VILLA_GLOBAL_CHIP_ID_MSB); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 370 | if (phy_reg < 0) |
| 371 | return -EIO; |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 372 | *phy_id |= (phy_reg & 0xffff); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 373 | |
Vicentiu Galanopulo | 33f68aa | 2018-05-02 06:23:38 -0500 | [diff] [blame] | 374 | if ((*phy_id == PHY_UID_CS4340) || (*phy_id == PHY_UID_CS4223)) |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 375 | return 0; |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 376 | |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 377 | /* |
| 378 | * If Cortina PHY not detected, |
| 379 | * try generic way to find PHY ID registers |
| 380 | */ |
| 381 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID1); |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 382 | if (phy_reg < 0) |
| 383 | return -EIO; |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 384 | *phy_id = (phy_reg & 0xffff) << 16; |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 385 | |
Priyanka Jain | b3b3b08 | 2018-01-30 11:38:38 +0530 | [diff] [blame] | 386 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID2); |
| 387 | if (phy_reg < 0) |
| 388 | return -EIO; |
Shengzhou Liu | c878bdb | 2014-11-10 18:32:29 +0800 | [diff] [blame] | 389 | *phy_id |= (phy_reg & 0xffff); |
| 390 | |
| 391 | return 0; |
| 392 | } |