summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asrock/h110m/ramstage.c
blob: d75c8082ce6f39c7c32cb9c3333a3680ee77dde1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <soc/ramstage.h>
#include "include/gpio.h"

void mainboard_silicon_init_params(FSP_SIL_UPD *params)
{
	/* Configure pads prior to SiliconInit() in case there's any
	 * dependencies during hardware initialization. */
	gpio_configure_pads(gpio_table, ARRAY_SIZE(gpio_table));

	params->CdClock = 3;
}