coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
variant.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <cbfs.h>
4 #include <fmap.h>
5 #include <types.h>
6 #include <arch/io.h>
7 #include <device/pci_ops.h>
8 #include <console/console.h>
9 #include <device/device.h>
10 #include <smbios.h>
11 #include <soc/pch.h>
12 #include <variant/onboard.h>
14 
15 int variant_smbios_data(struct device *dev, int *handle, unsigned long *current)
16 {
17  int len = 0;
18 
19  len += smbios_write_type41(
20  current, handle,
21  BOARD_TOUCHSCREEN_NAME, /* name */
22  BOARD_TOUCHSCREEN_IRQ, /* instance */
23  BOARD_TOUCHSCREEN_I2C_BUS, /* segment */
25  0, /* device */
26  0, /* function */
27  SMBIOS_DEVICE_TYPE_OTHER); /* device type */
28 
29  return len;
30 }
31 
32 static unsigned int search(char *p, u8 *a, unsigned int lengthp,
33  unsigned int lengtha)
34 {
35  int i, j;
36 
37  /* Searching */
38  for (j = 0; j <= lengtha - lengthp; j++) {
39  for (i = 0; i < lengthp && p[i] == a[i + j]; i++)
40  ;
41  if (i >= lengthp)
42  return j;
43  }
44  return lengtha;
45 }
46 
47 static unsigned char get_hex_digit(u8 *offset)
48 {
49  unsigned char retval = 0;
50 
51  retval = *offset - '0';
52  if (retval > 0x09) {
53  retval = *offset - 'A' + 0x0A;
54  if (retval > 0x0F)
55  retval = *offset - 'a' + 0x0a;
56  }
57  if (retval > 0x0F) {
58  printk(BIOS_DEBUG, "Error: Invalid Hex digit found: %c - 0x%02x\n",
59  *offset, *offset);
60  retval = 0;
61  }
62 
63  return retval;
64 }
65 
66 static int get_mac_address(u32 *high_dword, u32 *low_dword,
67  u8 *search_address, u32 search_length)
68 {
69  char key[] = "ethernet_mac";
70  unsigned int offset;
71  int i;
72 
73  offset = search(key, search_address, sizeof(key) - 1, search_length);
74  if (offset == search_length) {
76  "Error: Could not locate '%s' in VPD\n", key);
77  return 0;
78  }
79  printk(BIOS_DEBUG, "Located '%s' in VPD\n", key);
80 
81  offset += sizeof(key); /* move to next character */
82  *high_dword = 0;
83 
84  /* Fetch the MAC address and put the octets in the correct order to
85  * be programmed.
86  *
87  * From RTL8105E_Series_EEPROM-Less_App_Note_1.1
88  * If the MAC address is 001122334455h:
89  * Write 33221100h to I/O register offset 0x00 via double word access
90  * Write 00005544h to I/O register offset 0x04 via double word access
91  */
92 
93  for (i = 0; i < 4; i++) {
94  *high_dword |= (get_hex_digit(search_address + offset)
95  << (4 + (i * 8)));
96  *high_dword |= (get_hex_digit(search_address + offset + 1)
97  << (i * 8));
98  offset += 3;
99  }
100 
101  *low_dword = 0;
102  for (i = 0; i < 2; i++) {
103  *low_dword |= (get_hex_digit(search_address + offset)
104  << (4 + (i * 8)));
105  *low_dword |= (get_hex_digit(search_address + offset + 1)
106  << (i * 8));
107  offset += 3;
108  }
109 
110  return *high_dword | *low_dword;
111 }
112 
113 static void program_mac_address(u16 io_base)
114 {
115  void *search_address = NULL;
116  size_t search_length = -1;
117 
118  /* Default MAC Address of A0:00:BA:D0:0B:AD */
119  u32 high_dword = 0xD0BA00A0; /* high dword of mac address */
120  u32 low_dword = 0x0000AD0B; /* low word of mac address as a dword */
121 
122  if (CONFIG(VPD)) {
123  struct region_device rdev;
124 
125  if (fmap_locate_area_as_rdev("RO_VPD", &rdev) == 0) {
126  search_address = rdev_mmap_full(&rdev);
127 
128  if (search_address != NULL)
129  search_length = region_device_sz(&rdev);
130  }
131  } else {
132  search_address = cbfs_map("vpd.bin", &search_length);
133  }
134 
135  if (search_address == NULL)
136  printk(BIOS_ERR, "LAN: VPD not found.\n");
137  else
138  get_mac_address(&high_dword, &low_dword, search_address,
139  search_length);
140 
141  if (io_base) {
142  printk(BIOS_DEBUG, "Realtek NIC io_base = 0x%04x\n", io_base);
143  printk(BIOS_DEBUG, "Programming MAC Address\n");
144 
145  /* Disable register protection */
146  outb(0xc0, io_base + 0x50);
147  outl(high_dword, io_base);
148  outl(low_dword, io_base + 0x04);
149  outb(0x60, io_base + 54);
150  /* Enable register protection again */
151  outb(0x00, io_base + 0x50);
152  }
153 }
154 
155 void lan_init(void)
156 {
157  u16 io_base = 0;
158  struct device *ethernet_dev = NULL;
159 
160  /* Get NIC's IO base address */
161  ethernet_dev = dev_find_device(BUDDY_NIC_VENDOR_ID,
163  if (ethernet_dev != NULL) {
164  io_base = pci_read_config16(ethernet_dev, 0x10) & 0xfffe;
165 
166  /*
167  * Battery life time - LAN PCIe should enter ASPM L1 to save
168  * power when LAN connection is idle.
169  * enable CLKREQ: LAN PCI config space 0x81h=01
170  */
171  pci_write_config8(ethernet_dev, 0x81, 0x01);
172  }
173 
174  if (io_base) {
175  /* Program MAC address based on VPD data */
176  program_mac_address(io_base);
177 
178  /*
179  * Program NIC LEDS
180  *
181  * RTL8105E Series EEPROM-Less Application Note,
182  * Section 5.6 LED Mode Configuration
183  *
184  * Step1: Write C0h to I/O register 0x50 via byte access to
185  * disable 'register protection'
186  * Step2: Write xx001111b to I/O register 0x52 via byte access
187  * (bit7 is LEDS1 and bit6 is LEDS0)
188  * Step3: Write 0x00 to I/O register 0x50 via byte access to
189  * enable 'register protection'
190  */
191  outb(0xc0, io_base + 0x50); /* Disable protection */
192  outb((BUDDY_NIC_LED_MODE << 6) | 0x0f, io_base + 0x52);
193  outb(0x00, io_base + 0x50); /* Enable register protection */
194  }
195 }
int smbios_write_type41(unsigned long *current, int *handle, const char *name, u8 instance, u16 segment, u8 bus, u8 device, u8 function, u8 device_type)
Definition: smbios.c:1087
static void * cbfs_map(const char *name, size_t *size_out)
Definition: cbfs.h:246
#define printk(level,...)
Definition: stdlib.h:16
void outb(u8 val, u16 port)
void outl(u32 val, u16 port)
struct device * dev_find_device(u16 vendor, u16 device, struct device *from)
Find a device of a given vendor and type.
Definition: device_util.c:42
@ CONFIG
Definition: dsi_common.h:201
static struct region_device rdev
Definition: flashconsole.c:14
static size_t offset
Definition: flashconsole.c:16
int fmap_locate_area_as_rdev(const char *name, struct region_device *area)
Definition: fmap.c:144
int variant_smbios_data(struct device *dev, int *handle, unsigned long *current)
Definition: variant.c:7
#define BUDDY_NIC_VENDOR_ID
Definition: onboard.h:7
#define BOARD_TOUCHSCREEN_IRQ
Definition: onboard.h:14
#define BOARD_TOUCHSCREEN_I2C_ADDR
Definition: onboard.h:17
#define BUDDY_NIC_DEVICE_ID
Definition: onboard.h:8
#define BOARD_TOUCHSCREEN_NAME
Definition: onboard.h:13
#define BUDDY_NIC_LED_MODE
Definition: onboard.h:11
#define BOARD_TOUCHSCREEN_I2C_BUS
Definition: onboard.h:16
static unsigned char get_hex_digit(u8 *offset)
Definition: variant.c:47
static unsigned int search(char *p, u8 *a, unsigned int lengthp, unsigned int lengtha)
Definition: variant.c:32
void lan_init(void)
Definition: variant.c:155
static int get_mac_address(u32 *high_dword, u32 *low_dword, u8 *search_address, u32 search_length)
Definition: variant.c:66
static void program_mac_address(u16 io_base)
Definition: variant.c:113
static __always_inline u16 pci_read_config16(const struct device *dev, u16 reg)
Definition: pci_ops.h:52
static __always_inline void pci_write_config8(const struct device *dev, u16 reg, u8 val)
Definition: pci_ops.h:64
@ SMBIOS_DEVICE_TYPE_OTHER
Definition: smbios.h:940
#define BIOS_DEBUG
BIOS_DEBUG - Verbose output.
Definition: loglevel.h:128
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
static size_t region_device_sz(const struct region_device *rdev)
Definition: region.h:132
static void * rdev_mmap_full(const struct region_device *rd)
Definition: region.h:148
#define NULL
Definition: stddef.h:19
uint32_t u32
Definition: stdint.h:51
uint16_t u16
Definition: stdint.h:48
uint8_t u8
Definition: stdint.h:45
Definition: device.h:107