1 /* 2 * Copyright (C) 2015, Google, Inc 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #include <common.h> 8 #include <asm/gpio.h> 9 #include <netdev.h> 10 11 int arch_early_init_r(void) 12 { 13 /* do the pin-muxing */ 14 gpio_ich6_pinctrl_init(); 15 16 return 0; 17 } 18 19 void setup_pch_gpios(u16 gpiobase, const struct pch_gpio_map *gpio) 20 { 21 return; 22 } 23 24 int board_eth_init(bd_t *bis) 25 { 26 return pci_eth_init(bis); 27 } 28