blob: 6f99d0760fe670f4fd0bc2c4e797a7f4ea1dcde7 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
#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);
}