blob: d22e1453576db1bf90a8a2fa3bccd680df9e6717 [file] [log] [blame]
Duncan Laurie09170f12015-10-09 09:25:32 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015 Intel Corporation
5 * Copyright (C) 2015 Google Inc.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Duncan Laurie09170f12015-10-09 09:25:32 -070015 */
16
17#include <soc/ramstage.h>
18#include "gpio.h"
19
20void mainboard_silicon_init_params(SILICON_INIT_UPD *params)
21{
22 /* Configure pads prior to SiliconInit() in case there's any
23 * dependencies during hardware initialization. */
24 gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));
25}