blob: 076cfa1d15b357091e97f0c6feec3c48fd273ac2 [file] [log] [blame]
huang lina6dbfb52016-03-02 18:38:40 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2016 Rockchip Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 */
16
philipchen21b08522017-04-27 18:25:11 -070017#include <assert.h>
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -070018#include <boardid.h>
Julius Wernerc49782c2016-11-21 20:14:18 -080019#include <console/console.h>
Lin Huangb497b482016-03-31 18:44:13 +080020#include <delay.h>
huang lina6dbfb52016-03-02 18:38:40 +080021#include <device/device.h>
Nico Huber0f2dd1e2017-08-01 14:02:40 +020022#include <device/i2c_simple.h>
Julius Wernerc49782c2016-11-21 20:14:18 -080023#include <ec/google/chromeec/ec.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070024#include <gpio.h>
Lin Huang5a4be8a2016-05-17 15:45:53 +080025#include <soc/bl31_plat_params.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070026#include <soc/clock.h>
Lin Huangb497b482016-03-31 18:44:13 +080027#include <soc/display.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070028#include <soc/grf.h>
Lin Huangb497b482016-03-31 18:44:13 +080029#include <soc/i2c.h>
Liangfeng Wu76655cb2016-05-26 16:06:58 +080030#include <soc/usb.h>
Simon Glassbc679bc2016-06-19 16:09:21 -060031#include <vendorcode/google/chromeos/chromeos.h>
Vadim Bendebury1e80ab32016-03-28 00:44:54 -070032
Vadim Bendebury993dbe12016-05-22 15:53:37 -070033#include "board.h"
34
Brian Norrise06a1b82016-09-21 18:16:54 -070035/*
Caesar Wang212a0262017-05-24 18:02:25 +080036 * We have to drive the stronger pull-up within 1 second of powering up the
Ege Mihmanli75b15432017-11-15 17:19:58 -080037 * touchpad to prevent its firmware from falling into recovery. Not on
38 * Scarlet-based boards.
Caesar Wang212a0262017-05-24 18:02:25 +080039 */
40static void configure_touchpad(void)
41{
Julius Werner6486e782017-07-14 14:30:29 -070042 gpio_output(GPIO_TP_RST_L, 1); /* TP's I2C pull-up rail */
Caesar Wang212a0262017-05-24 18:02:25 +080043}
44
45/*
Brian Norrise06a1b82016-09-21 18:16:54 -070046 * Wifi's PDN/RST line is pulled down by its (unpowered) voltage rails, but
47 * this reset pin is pulled up by default. Let's drive it low as early as we
Philip Chena0618202017-08-23 18:02:25 -070048 * can. This only applies to boards with Marvell 8997 WiFi.
Brian Norrise06a1b82016-09-21 18:16:54 -070049 */
Julius Werner6486e782017-07-14 14:30:29 -070050static void assert_wifi_reset(void)
Brian Norrise06a1b82016-09-21 18:16:54 -070051{
Julius Werner6486e782017-07-14 14:30:29 -070052 gpio_output(GPIO_WLAN_RST_L, 0); /* Assert WLAN_MODULE_RST# */
Brian Norrise06a1b82016-09-21 18:16:54 -070053}
54
Lin Huang2f7ed8d2016-04-08 18:56:20 +080055static void configure_emmc(void)
56{
57 /* Host controller does not support programmable clock generator.
58 * If we don't do this setting, when we use phy to control the
59 * emmc clock(when clock exceed 50MHz), it will get wrong clock.
60 *
61 * Refer to TRM V0.3 Part 1 Chapter 15 PAGE 782 for this register.
62 * Please search "_CON11[7:0]" to locate register description.
63 */
64 write32(&rk3399_grf->emmccore_con[11], RK_CLRSETBITS(0xff, 0));
65
66 rkclk_configure_emmc();
67}
68
Lin Huangc9fea5c2016-08-30 15:34:42 -070069static void register_apio_suspend(void)
70{
71 static struct bl31_apio_param param_apio = {
72 .h = {
73 .type = PARAM_SUSPEND_APIO,
74 },
75 .apio = {
76 .apio1 = 1,
77 .apio2 = 1,
78 .apio3 = 1,
79 .apio4 = 1,
80 .apio5 = 1,
81 },
82 };
83 register_bl31_param(&param_apio.h);
84}
85
Lin Huang7d8ccfb2016-08-22 17:35:40 -070086static void register_gpio_suspend(void)
87{
88 /*
89 * These three GPIO params are used to shut down the 1.5V, 1.8V and
90 * 3.3V power rails, which need to be shut down ordered by voltage,
91 * with highest voltage first.
92 * Since register_bl31() appends to the front of the list, we need to
93 * register them backwards, with 1.5V coming first.
Ege Mihmanli75b15432017-11-15 17:19:58 -080094 * 1.5V and 1.8V are EC-controlled on Scarlet derivatives,
95 * so we skip them.
Lin Huang7d8ccfb2016-08-22 17:35:40 -070096 */
Ege Mihmanli75b15432017-11-15 17:19:58 -080097 if (!IS_ENABLED(CONFIG_GRU_BASEBOARD_SCARLET)) {
Julius Werner2be64042017-09-01 14:27:46 -070098 static struct bl31_gpio_param param_p15_en = {
99 .h = { .type = PARAM_SUSPEND_GPIO },
100 .gpio = { .polarity = BL31_GPIO_LEVEL_LOW },
101 };
102 param_p15_en.gpio.index = GPIO_P15V_EN.raw;
103 register_bl31_param(&param_p15_en.h);
Lin Huang7d8ccfb2016-08-22 17:35:40 -0700104
Julius Werner2be64042017-09-01 14:27:46 -0700105 static struct bl31_gpio_param param_p18_audio_en = {
106 .h = { .type = PARAM_SUSPEND_GPIO },
107 .gpio = { .polarity = BL31_GPIO_LEVEL_LOW },
108 };
109 param_p18_audio_en.gpio.index = GPIO_P18V_AUDIO_PWREN.raw;
110 register_bl31_param(&param_p18_audio_en.h);
111 }
Lin Huang7d8ccfb2016-08-22 17:35:40 -0700112
113 static struct bl31_gpio_param param_p30_en = {
Julius Werner2be64042017-09-01 14:27:46 -0700114 .h = { .type = PARAM_SUSPEND_GPIO },
115 .gpio = { .polarity = BL31_GPIO_LEVEL_LOW },
Lin Huang7d8ccfb2016-08-22 17:35:40 -0700116 };
Julius Werner4ed8b302017-07-14 14:25:39 -0700117 param_p30_en.gpio.index = GPIO_P30V_EN.raw;
Lin Huang7d8ccfb2016-08-22 17:35:40 -0700118 register_bl31_param(&param_p30_en.h);
119}
120
Lin Huang5a4be8a2016-05-17 15:45:53 +0800121static void register_reset_to_bl31(void)
122{
123 static struct bl31_gpio_param param_reset = {
124 .h = {
125 .type = PARAM_RESET,
126 },
127 .gpio = {
128 .polarity = 1,
129 },
130 };
131
132 /* gru/kevin reset pin: gpio0b3 */
Julius Werner4ed8b302017-07-14 14:25:39 -0700133 param_reset.gpio.index = GPIO_RESET.raw,
Lin Huang5a4be8a2016-05-17 15:45:53 +0800134
135 register_bl31_param(&param_reset.h);
136}
137
Lin Huang9a5c4fe2016-05-19 11:11:23 +0800138static void register_poweroff_to_bl31(void)
139{
140 static struct bl31_gpio_param param_poweroff = {
141 .h = {
142 .type = PARAM_POWEROFF,
143 },
144 .gpio = {
145 .polarity = 1,
146 },
147 };
148
149 /*
150 * gru/kevin power off pin: gpio1a6,
151 * reuse with tsadc int pin, so iomux need set back to
152 * gpio in BL31 and depthcharge before you setting this gpio
153 */
Julius Werner4ed8b302017-07-14 14:25:39 -0700154 param_poweroff.gpio.index = GPIO_POWEROFF.raw,
Lin Huang9a5c4fe2016-05-19 11:11:23 +0800155
156 register_bl31_param(&param_poweroff.h);
157}
158
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700159static void configure_sdmmc(void)
160{
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700161 gpio_output(GPIO(2, A, 2), 1); /* SDMMC_SDIO_PWR_EN */
Vadim Bendebury2832c412016-05-11 15:03:44 +0800162
Lin Huanga2c5b2f2017-07-25 09:50:10 +0800163 /* set SDMMC_DET_L pin */
Ege Mihmanli75b15432017-11-15 17:19:58 -0800164 if (IS_ENABLED(CONFIG_GRU_BASEBOARD_SCARLET))
Lin Huanga2c5b2f2017-07-25 09:50:10 +0800165 /*
166 * do not have external pull up, so need to
167 * set this pin internal pull up
168 */
169 gpio_input_pullup(GPIO(1, B, 3));
Vadim Bendebury2832c412016-05-11 15:03:44 +0800170 else
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -0700171 gpio_input(GPIO(4, D, 0));
Vadim Bendebury2832c412016-05-11 15:03:44 +0800172
Lin Huanga2c5b2f2017-07-25 09:50:10 +0800173 /*
174 * Keep sd card io domain 3v
Ege Mihmanli75b15432017-11-15 17:19:58 -0800175 * In Scarlet derivatives, this GPIO set to high will get 3v,
Lin Huanga2c5b2f2017-07-25 09:50:10 +0800176 * With other board variants setting this GPIO low results in 3V.
177 */
Ege Mihmanli75b15432017-11-15 17:19:58 -0800178 if (IS_ENABLED(CONFIG_GRU_BASEBOARD_SCARLET))
Lin Huanga2c5b2f2017-07-25 09:50:10 +0800179 gpio_output(GPIO(2, D, 4), 1);
180 else
181 gpio_output(GPIO(2, D, 4), 0);
Vadim Bendebury8e8a00c2016-04-22 12:25:07 -0700182
Julius Werner7feb86b2016-09-02 11:25:56 -0700183 gpio_input(GPIO(4, B, 0)); /* SDMMC0_D0 remove pull-up */
184 gpio_input(GPIO(4, B, 1)); /* SDMMC0_D1 remove pull-up */
185 gpio_input(GPIO(4, B, 2)); /* SDMMC0_D2 remove pull-up */
186 gpio_input(GPIO(4, B, 3)); /* SDMMC0_D3 remove pull-up */
187 gpio_input(GPIO(4, B, 4)); /* SDMMC0_CLK remove pull-down */
188 gpio_input(GPIO(4, B, 5)); /* SDMMC0_CMD remove pull-up */
189
Vadim Bendeburyad6ee022016-05-12 16:54:00 +0800190 write32(&rk3399_grf->gpio2_p[2][1], RK_CLRSETBITS(0xfff, 0));
191
192 /*
193 * Set all outputs' drive strength to 8 mA. Group 4 bank B driver
194 * strength requires three bits per pin. Value of 2 written in that
195 * three bit field means '8 mA', as deduced from the kernel code.
196 *
197 * Thus the six pins involved in SDMMC interface require 18 bits to
198 * configure drive strength, but each 32 bit register provides only 16
199 * bits for this setting, this covers 5 pins fully and one bit from
200 * the 6th pin. Two more bits spill over to the next register. This is
201 * described on page 378 of rk3399 TRM Version 0.3 Part 1.
202 */
203 write32(&rk3399_grf->gpio4b_e01,
204 RK_CLRSETBITS(0xffff,
205 (2 << 0) | (2 << 3) |
206 (2 << 6) | (2 << 9) | (2 << 12)));
207 write32(&rk3399_grf->gpio4b_e2, RK_CLRSETBITS(3, 1));
208
209 /* And now set the multiplexor to enable SDMMC0. */
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700210 write32(&rk3399_grf->iomux_sdmmc, IOMUX_SDMMC);
211}
huang lina6dbfb52016-03-02 18:38:40 +0800212
Xing Zheng96fbc312016-05-19 11:39:20 +0800213static void configure_codec(void)
214{
Julius Werner7feb86b2016-09-02 11:25:56 -0700215 gpio_input(GPIO(3, D, 0)); /* I2S0_SCLK remove pull-up */
216 gpio_input(GPIO(3, D, 1)); /* I2S0_RX remove pull-up */
217 gpio_input(GPIO(3, D, 2)); /* I2S0_TX remove pull-up */
218 gpio_input(GPIO(3, D, 3)); /* I2S0_SDI0 remove pull-up */
219 gpio_input(GPIO(3, D, 4)); /* I2S0_SDI1 remove pull-up */
220 /* GPIO3_D5 (I2S0_SDI2SDO2) not connected */
221 gpio_input(GPIO(3, D, 6)); /* I2S0_SDO1 remove pull-up */
222 gpio_input(GPIO(3, D, 7)); /* I2S0_SDO0 remove pull-up */
223 gpio_input(GPIO(4, A, 0)); /* I2S0_MCLK remove pull-up */
224
Xing Zheng96fbc312016-05-19 11:39:20 +0800225 write32(&rk3399_grf->iomux_i2s0, IOMUX_I2S0);
226 write32(&rk3399_grf->iomux_i2sclk, IOMUX_I2SCLK);
227
228 /* AUDIO IO domain 1.8V voltage selection */
229 write32(&rk3399_grf->io_vsel, RK_SETBITS(1 << 1));
230
Ege Mihmanli75b15432017-11-15 17:19:58 -0800231 if (!IS_ENABLED(CONFIG_GRU_BASEBOARD_SCARLET))
Julius Werner1ab8c012017-11-03 15:23:09 -0700232 gpio_output(GPIO_P18V_AUDIO_PWREN, 1);
233 gpio_output(GPIO_SPK_PA_EN, 0);
Xing Zheng96fbc312016-05-19 11:39:20 +0800234
235 rkclk_configure_i2s(12288000);
236}
237
Lin Huangb497b482016-03-31 18:44:13 +0800238static void configure_display(void)
239{
Ege Mihmanlibeb04682017-11-20 11:54:02 -0800240 /*
241 * Rainier is Scarlet-derived, but uses EDP so use board-specific
242 * config rather than baseboard.
243 */
244 if (IS_ENABLED(CONFIG_BOARD_GOOGLE_SCARLET)) {
Julius Werner6486e782017-07-14 14:30:29 -0700245 gpio_output(GPIO(4, D, 1), 0); /* DISPLAY_RST_L */
246 gpio_output(GPIO(4, D, 3), 1); /* PPVARP_LCD */
247 mdelay(10);
248 gpio_output(GPIO(4, D, 4), 1); /* PPVARN_LCD */
249 mdelay(20 + 2); /* add 2ms for bias rise time */
250 gpio_output(GPIO(4, D, 1), 1); /* DISPLAY_RST_L */
251 mdelay(30);
252 } else {
253 /* set pinmux for edp HPD */
254 gpio_input_pulldown(GPIO(4, C, 7));
255 write32(&rk3399_grf->iomux_edp_hotplug, IOMUX_EDP_HOTPLUG);
Lin Huangb497b482016-03-31 18:44:13 +0800256
Julius Werner6486e782017-07-14 14:30:29 -0700257 gpio_output(GPIO(4, D, 3), 1); /* P3.3V_DISP */
258 }
Lin Huangb497b482016-03-31 18:44:13 +0800259}
260
Julius Wernerc49782c2016-11-21 20:14:18 -0800261static void usb_power_cycle(int port)
262{
263 if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_FORCE_SINK))
264 printk(BIOS_ERR, "ERROR: Cannot force USB%d PD sink\n", port);
265
266 mdelay(10); /* Make sure USB stick is fully depowered. */
267
268 if (google_chromeec_set_usb_pd_role(port, USB_PD_CTRL_ROLE_TOGGLE_ON))
269 printk(BIOS_ERR, "ERROR: Cannot restore USB%d PD mode\n", port);
270}
271
philipchen21b08522017-04-27 18:25:11 -0700272static void setup_usb(int port)
Liangfeng Wu76655cb2016-05-26 16:06:58 +0800273{
philipchen21b08522017-04-27 18:25:11 -0700274 /* Must be PHY0 or PHY1. */
275 assert(port == 0 || port == 1);
276
William wu605a87c2017-01-09 19:02:39 +0800277 /*
278 * A few magic PHY tuning values that improve eye diagram amplitude
279 * and make it extra sure we get reliable communication in firmware
280 * Set max ODT compensation voltage and current tuning reference.
281 */
philipchen21b08522017-04-27 18:25:11 -0700282 write32(&rk3399_grf->usbphy_ctrl[port][3], RK_CLRSETBITS(0xfff, 0x2e3));
William wu9f470b12016-11-10 19:34:45 +0800283
Caesar Wang9e588002017-02-10 11:16:13 +0800284 /* Set max pre-emphasis level on PHY0 and PHY1. */
philipchen21b08522017-04-27 18:25:11 -0700285 write32(&rk3399_grf->usbphy_ctrl[port][12],
Caesar Wang9e588002017-02-10 11:16:13 +0800286 RK_CLRSETBITS(0xffff, 0xa7));
William wu9f470b12016-11-10 19:34:45 +0800287
Caesar Wang9e588002017-02-10 11:16:13 +0800288 /*
William wuebbdd282017-01-23 20:54:22 +0800289 * 1. Disable the pre-emphasize in eop state and chirp
Caesar Wang9e588002017-02-10 11:16:13 +0800290 * state to avoid mis-trigger the disconnect detection
291 * and also avoid high-speed handshake fail for PHY0
292 * and PHY1 consist of otg-port and host-port.
William wuebbdd282017-01-23 20:54:22 +0800293 *
294 * 2. Configure PHY0 and PHY1 otg-ports squelch detection
295 * threshold to 125mV (default is 150mV).
Caesar Wang9e588002017-02-10 11:16:13 +0800296 */
philipchen21b08522017-04-27 18:25:11 -0700297 write32(&rk3399_grf->usbphy_ctrl[port][0],
William wuebbdd282017-01-23 20:54:22 +0800298 RK_CLRSETBITS(7 << 13 | 3 << 0, 6 << 13));
philipchen21b08522017-04-27 18:25:11 -0700299 write32(&rk3399_grf->usbphy_ctrl[port][13], RK_CLRBITS(3 << 0));
William wu9f470b12016-11-10 19:34:45 +0800300
Caesar Wang9e588002017-02-10 11:16:13 +0800301 /*
302 * ODT auto compensation bypass, and set max driver
303 * strength only for PHY0 and PHY1 otg-port.
304 */
philipchen21b08522017-04-27 18:25:11 -0700305 write32(&rk3399_grf->usbphy_ctrl[port][2],
Caesar Wang9e588002017-02-10 11:16:13 +0800306 RK_CLRSETBITS(0x7e << 4, 0x60 << 4));
William wu9f470b12016-11-10 19:34:45 +0800307
Caesar Wang9e588002017-02-10 11:16:13 +0800308 /*
309 * ODT auto refresh bypass, and set the max bias current
310 * tuning reference only for PHY0 and PHY1 otg-port.
311 */
philipchen21b08522017-04-27 18:25:11 -0700312 write32(&rk3399_grf->usbphy_ctrl[port][3],
Caesar Wang9e588002017-02-10 11:16:13 +0800313 RK_CLRSETBITS(0x21c, 1 << 4));
William wu605a87c2017-01-09 19:02:39 +0800314
Caesar Wang9e588002017-02-10 11:16:13 +0800315 /*
316 * ODT auto compensation bypass, and set default driver
317 * strength only for PHY0 and PHY1 host-port.
318 */
philipchen21b08522017-04-27 18:25:11 -0700319 write32(&rk3399_grf->usbphy_ctrl[port][15], RK_SETBITS(1 << 10));
William wu605a87c2017-01-09 19:02:39 +0800320
Caesar Wang9e588002017-02-10 11:16:13 +0800321 /* ODT auto refresh bypass only for PHY0 and PHY1 host-port. */
philipchen21b08522017-04-27 18:25:11 -0700322 write32(&rk3399_grf->usbphy_ctrl[port][16], RK_CLRBITS(1 << 9));
Julius Werner1c8491c2016-08-15 17:58:05 -0700323
philipchen21b08522017-04-27 18:25:11 -0700324 if (port == 0)
325 setup_usb_otg0();
326 else
327 setup_usb_otg1();
Julius Wernerc49782c2016-11-21 20:14:18 -0800328
329 /*
330 * Need to power-cycle USB ports for use in firmware, since some devices
331 * can't fall back to USB 2.0 after they saw SuperSpeed terminations.
332 * This takes about a dozen milliseconds, so only do it in boot modes
333 * that have firmware UI (which one could select USB boot from).
334 */
philipchen21b08522017-04-27 18:25:11 -0700335 if (display_init_required())
336 usb_power_cycle(port);
Liangfeng Wu76655cb2016-05-26 16:06:58 +0800337}
338
huang lina6dbfb52016-03-02 18:38:40 +0800339static void mainboard_init(device_t dev)
340{
Vadim Bendebury1e80ab32016-03-28 00:44:54 -0700341 configure_sdmmc();
Lin Huang2f7ed8d2016-04-08 18:56:20 +0800342 configure_emmc();
Xing Zheng96fbc312016-05-19 11:39:20 +0800343 configure_codec();
Julius Werner6486e782017-07-14 14:30:29 -0700344 if (display_init_required())
345 configure_display();
philipchen21b08522017-04-27 18:25:11 -0700346 setup_usb(0);
Philip Chena0618202017-08-23 18:02:25 -0700347 if (IS_ENABLED(CONFIG_GRU_HAS_WLAN_RESET))
348 assert_wifi_reset();
Ege Mihmanli75b15432017-11-15 17:19:58 -0800349 if (!IS_ENABLED(CONFIG_GRU_BASEBOARD_SCARLET)) {
Julius Werner6486e782017-07-14 14:30:29 -0700350 configure_touchpad(); /* Scarlet: works differently */
351 setup_usb(1); /* Scarlet: only one USB port */
Julius Werner6486e782017-07-14 14:30:29 -0700352 }
Julius Werner2be64042017-09-01 14:27:46 -0700353 register_gpio_suspend();
Lin Huang5a4be8a2016-05-17 15:45:53 +0800354 register_reset_to_bl31();
Lin Huang9a5c4fe2016-05-19 11:11:23 +0800355 register_poweroff_to_bl31();
Lin Huangc9fea5c2016-08-30 15:34:42 -0700356 register_apio_suspend();
Lin Huangb497b482016-03-31 18:44:13 +0800357}
358
Philip Chena304b692017-04-06 10:17:08 -0700359static void prepare_backlight_i2c(void)
Lin Huangb497b482016-03-31 18:44:13 +0800360{
Julius Werner7feb86b2016-09-02 11:25:56 -0700361 gpio_input(GPIO(1, B, 7)); /* I2C0_SDA remove pull_up */
362 gpio_input(GPIO(1, C, 0)); /* I2C0_SCL remove pull_up */
363
364 i2c_init(0, 100*KHz);
365
Lin Huangb497b482016-03-31 18:44:13 +0800366 write32(&rk3399_pmugrf->iomux_i2c0_sda, IOMUX_I2C0_SDA);
367 write32(&rk3399_pmugrf->iomux_i2c0_scl, IOMUX_I2C0_SCL);
Lin Huangb497b482016-03-31 18:44:13 +0800368}
369
370void mainboard_power_on_backlight(void)
371{
Vadim Bendeburyf1343df2016-05-22 15:53:37 -0700372 gpio_output(GPIO_BACKLIGHT, 1); /* BL_EN */
Lin Huangb497b482016-03-31 18:44:13 +0800373
Philip Chena304b692017-04-06 10:17:08 -0700374 if (IS_ENABLED(CONFIG_BOARD_GOOGLE_GRU))
375 prepare_backlight_i2c();
huang lina6dbfb52016-03-02 18:38:40 +0800376}
377
378static void mainboard_enable(device_t dev)
379{
380 dev->ops->init = &mainboard_init;
381}
382
383struct chip_operations mainboard_ops = {
384 .name = CONFIG_MAINBOARD_PART_NUMBER,
385 .enable_dev = mainboard_enable,
386};