aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/intel/common/early_spi.h
blob: ae84f74e838fbbdf6fc3e5184f277d6d1ad3870a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef SOUTHBRIDGE_INTEL_COMMON_EARLY_SPI_H
#define SOUTHBRIDGE_INTEL_COMMON_EARLY_SPI_H

#include <device/pci_ops.h>

static inline void enable_spi_prefetching_and_caching(void)
{
	pci_update_config8(PCI_DEV(0, 0x1f, 0), 0xdc, ~(3 << 2), 2 << 2);
}

#endif