Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 CompuLab, Ltd. <www.compulab.co.il> |
| 3 | * |
| 4 | * Authors: Nikita Kiryanov <nikita@compulab.co.il> |
| 5 | * Igor Grinberg <grinberg@compulab.co.il> |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <i2c.h> |
| 12 | |
Igor Grinberg | d3f041c | 2014-05-15 11:25:09 +0300 | [diff] [blame] | 13 | #ifndef CONFIG_SYS_I2C_EEPROM_ADDR |
| 14 | # define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 |
| 15 | # define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 |
| 16 | #endif |
| 17 | |
Nikita Kiryanov | 7d2f669 | 2014-09-17 15:59:25 +0300 | [diff] [blame] | 18 | #ifndef CONFIG_SYS_I2C_EEPROM_BUS |
| 19 | #define CONFIG_SYS_I2C_EEPROM_BUS 0 |
| 20 | #endif |
| 21 | |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 22 | #define EEPROM_LAYOUT_VER_OFFSET 44 |
| 23 | #define BOARD_SERIAL_OFFSET 20 |
| 24 | #define BOARD_SERIAL_OFFSET_LEGACY 8 |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 25 | #define BOARD_REV_OFFSET 0 |
| 26 | #define BOARD_REV_OFFSET_LEGACY 6 |
Nikita Kiryanov | 6f3b300 | 2012-05-24 04:01:22 +0000 | [diff] [blame] | 27 | #define BOARD_REV_SIZE 2 |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 28 | #define MAC_ADDR_OFFSET 4 |
| 29 | #define MAC_ADDR_OFFSET_LEGACY 0 |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 30 | |
| 31 | #define LAYOUT_INVALID 0 |
| 32 | #define LAYOUT_LEGACY 0xff |
| 33 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 34 | static int cl_eeprom_bus; |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 35 | static int cl_eeprom_layout; /* Implicitly LAYOUT_INVALID */ |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 36 | |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 37 | static int cl_eeprom_read(uint offset, uchar *buf, int len) |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 38 | { |
Nikita Kiryanov | 52658fd | 2014-08-20 15:08:52 +0300 | [diff] [blame] | 39 | int res; |
| 40 | unsigned int current_i2c_bus = i2c_get_bus_num(); |
| 41 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 42 | res = i2c_set_bus_num(cl_eeprom_bus); |
Nikita Kiryanov | 52658fd | 2014-08-20 15:08:52 +0300 | [diff] [blame] | 43 | if (res < 0) |
| 44 | return res; |
| 45 | |
| 46 | res = i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, offset, |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 47 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, buf, len); |
Nikita Kiryanov | 52658fd | 2014-08-20 15:08:52 +0300 | [diff] [blame] | 48 | |
| 49 | i2c_set_bus_num(current_i2c_bus); |
| 50 | |
| 51 | return res; |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 54 | static int cl_eeprom_setup(uint eeprom_bus) |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 55 | { |
| 56 | int res; |
| 57 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 58 | /* |
| 59 | * We know the setup was already done when the layout is set to a valid |
| 60 | * value and we're using the same bus as before. |
| 61 | */ |
| 62 | if (cl_eeprom_layout != LAYOUT_INVALID && eeprom_bus == cl_eeprom_bus) |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 63 | return 0; |
| 64 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 65 | cl_eeprom_bus = eeprom_bus; |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 66 | res = cl_eeprom_read(EEPROM_LAYOUT_VER_OFFSET, |
| 67 | (uchar *)&cl_eeprom_layout, 1); |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 68 | if (res) { |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 69 | cl_eeprom_layout = LAYOUT_INVALID; |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 70 | return res; |
| 71 | } |
| 72 | |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 73 | if (cl_eeprom_layout == 0 || cl_eeprom_layout >= 0x20) |
| 74 | cl_eeprom_layout = LAYOUT_LEGACY; |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | void get_board_serial(struct tag_serialnr *serialnr) |
| 80 | { |
| 81 | u32 serial[2]; |
| 82 | uint offset; |
| 83 | |
| 84 | memset(serialnr, 0, sizeof(*serialnr)); |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 85 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 86 | if (cl_eeprom_setup(CONFIG_SYS_I2C_EEPROM_BUS)) |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 87 | return; |
| 88 | |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 89 | offset = (cl_eeprom_layout != LAYOUT_LEGACY) ? |
| 90 | BOARD_SERIAL_OFFSET : BOARD_SERIAL_OFFSET_LEGACY; |
| 91 | |
| 92 | if (cl_eeprom_read(offset, (uchar *)serial, 8)) |
Nikita Kiryanov | 8230925 | 2012-01-12 03:26:30 +0000 | [diff] [blame] | 93 | return; |
| 94 | |
| 95 | if (serial[0] != 0xffffffff && serial[1] != 0xffffffff) { |
| 96 | serialnr->low = serial[0]; |
| 97 | serialnr->high = serial[1]; |
| 98 | } |
| 99 | } |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 100 | |
| 101 | /* |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 102 | * Routine: cl_eeprom_read_mac_addr |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 103 | * Description: read mac address and store it in buf. |
| 104 | */ |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 105 | int cl_eeprom_read_mac_addr(uchar *buf, uint eeprom_bus) |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 106 | { |
| 107 | uint offset; |
| 108 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 109 | if (cl_eeprom_setup(eeprom_bus)) |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 110 | return 0; |
| 111 | |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 112 | offset = (cl_eeprom_layout != LAYOUT_LEGACY) ? |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 113 | MAC_ADDR_OFFSET : MAC_ADDR_OFFSET_LEGACY; |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 114 | |
| 115 | return cl_eeprom_read(offset, buf, 6); |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 116 | } |
| 117 | |
Igor Grinberg | a937fd1 | 2014-11-03 11:32:18 +0200 | [diff] [blame] | 118 | static u32 board_rev; |
| 119 | |
Nikita Kiryanov | e4e2bf5 | 2012-01-12 03:28:09 +0000 | [diff] [blame] | 120 | /* |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 121 | * Routine: cl_eeprom_get_board_rev |
Nikita Kiryanov | 8c318eb | 2012-05-24 04:01:24 +0000 | [diff] [blame] | 122 | * Description: read system revision from eeprom |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 123 | */ |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 124 | u32 cl_eeprom_get_board_rev(void) |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 125 | { |
Nikita Kiryanov | 2ef6302 | 2012-05-24 04:01:23 +0000 | [diff] [blame] | 126 | char str[5]; /* Legacy representation can contain at most 4 digits */ |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 127 | uint offset = BOARD_REV_OFFSET_LEGACY; |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 128 | |
Igor Grinberg | a937fd1 | 2014-11-03 11:32:18 +0200 | [diff] [blame] | 129 | if (board_rev) |
| 130 | return board_rev; |
| 131 | |
Nikita Kiryanov | e7a2447 | 2015-01-14 10:42:43 +0200 | [diff] [blame^] | 132 | if (cl_eeprom_setup(CONFIG_SYS_I2C_EEPROM_BUS)) |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 133 | return 0; |
| 134 | |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 135 | if (cl_eeprom_layout != LAYOUT_LEGACY) |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 136 | offset = BOARD_REV_OFFSET; |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 137 | |
Igor Grinberg | a937fd1 | 2014-11-03 11:32:18 +0200 | [diff] [blame] | 138 | if (cl_eeprom_read(offset, (uchar *)&board_rev, BOARD_REV_SIZE)) |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 139 | return 0; |
| 140 | |
Nikita Kiryanov | 2ef6302 | 2012-05-24 04:01:23 +0000 | [diff] [blame] | 141 | /* |
| 142 | * Convert legacy syntactic representation to semantic |
| 143 | * representation. i.e. for rev 1.00: 0x100 --> 0x64 |
| 144 | */ |
Igor Grinberg | 689be5f | 2013-09-16 21:49:58 +0300 | [diff] [blame] | 145 | if (cl_eeprom_layout == LAYOUT_LEGACY) { |
Igor Grinberg | a937fd1 | 2014-11-03 11:32:18 +0200 | [diff] [blame] | 146 | sprintf(str, "%x", board_rev); |
| 147 | board_rev = simple_strtoul(str, NULL, 10); |
Nikita Kiryanov | 2ef6302 | 2012-05-24 04:01:23 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Igor Grinberg | a937fd1 | 2014-11-03 11:32:18 +0200 | [diff] [blame] | 150 | return board_rev; |
Nikita Kiryanov | 7d3c97d | 2012-01-02 04:01:34 +0000 | [diff] [blame] | 151 | }; |