summaryrefslogtreecommitdiffstats
path: root/src/mainboard/supermicro/x11-lga1151-series/variants/x11ssm-f/mainboard.c
blob: a1d0624d384fcface54c657150bbf840583e9550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <mainboard.h>
#include <device/device.h>
#include <intelblocks/itss.h>
#include <intelblocks/pcr.h>
#include <soc/itss.h>
#include <soc/pcr_ids.h>

void variant_mainboard_init(struct device *dev)
{
	/* TODO:
	* Find out why the polarities from gpio.h gets overwritten by FSP.
	* This sets irq polarity to the same values as vendor
	* but I do not know if this is really needed....
	*/
	itss_set_irq_polarity(33, 0);
	itss_set_irq_polarity(34, 0);

	// TODO: NMI; is this needed? vendor sets it
	pcr_write32(0xae, 0x01e4, 0x00000004);
	pcr_write32(0xae, 0x01e8, 0x00000040);
}