blob: c4f2c33b877f8b1ead8753a089ed14ad0cbfad1e [file] [log] [blame]
Simon Glass4a56f102015-01-27 22:13:47 -07001/*
2 * Copyright (C) 2015, Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Gabriel Huauf70353a2015-05-11 23:18:25 -07008#include <asm/gpio.h>
Simon Glass4a56f102015-01-27 22:13:47 -07009#include <netdev.h>
Simon Glass4a56f102015-01-27 22:13:47 -070010
Gabriel Huauf70353a2015-05-11 23:18:25 -070011int arch_early_init_r(void)
12{
13 /* do the pin-muxing */
14 gpio_ich6_pinctrl_init();
15
16 return 0;
17}
18
Simon Glass4a56f102015-01-27 22:13:47 -070019void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio)
20{
21 return;
22}
23
24int board_eth_init(bd_t *bis)
25{
26 return pci_eth_init(bis);
27}