2015-04-11 07:44:37 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010-2015, Wind River Systems, Inc.
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-04-11 07:44:37 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-04 23:09:39 +08:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief Board configuration macros for the ia32 platform
|
|
|
|
*
|
2015-10-21 00:42:33 +08:00
|
|
|
* This header file is used to specify and describe board-level aspects for
|
|
|
|
* the 'ia32' platform.
|
2015-07-02 05:22:39 +08:00
|
|
|
*/
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#ifndef __SOC_H_
|
|
|
|
#define __SOC_H_
|
2015-04-11 07:44:37 +08:00
|
|
|
|
2022-05-06 17:11:04 +08:00
|
|
|
#include <zephyr/sys/util.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
|
|
|
|
#ifndef _ASMLANGUAGE
|
2022-05-06 17:11:04 +08:00
|
|
|
#include <zephyr/device.h>
|
|
|
|
#include <zephyr/random/rand32.h>
|
2015-04-11 07:44:37 +08:00
|
|
|
#endif
|
|
|
|
|
2018-01-31 22:54:21 +08:00
|
|
|
/* PCI definitions */
|
|
|
|
/* FIXME: The values below copied from generic ia32 soc, we need to get the
|
|
|
|
* correct numbers for Atom and the minnowboard
|
|
|
|
*
|
2022-03-17 05:07:43 +08:00
|
|
|
* This is added now to get basic enumeration of devices and verify that PCI
|
2018-01-31 22:54:21 +08:00
|
|
|
* driver is functional.
|
|
|
|
*/
|
|
|
|
#define PCI_BUS_NUMBERS 1
|
|
|
|
|
|
|
|
#define PCI_CTRL_ADDR_REG 0xCF8
|
|
|
|
#define PCI_CTRL_DATA_REG 0xCFC
|
|
|
|
|
|
|
|
#define PCI_INTA 1
|
|
|
|
#define PCI_INTB 2
|
|
|
|
#define PCI_INTC 3
|
|
|
|
#define PCI_INTD 4
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @brief Convert PCI interrupt PIN to IRQ
|
|
|
|
*
|
|
|
|
* @return IRQ number, -1 if the result is incorrect
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int pci_pin2irq(int bus, int dev, int pin)
|
|
|
|
{
|
|
|
|
ARG_UNUSED(bus);
|
|
|
|
|
|
|
|
if ((pin < PCI_INTA) || (pin > PCI_INTD)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 10 + (((pin + dev - 1) >> 1) & 1);
|
|
|
|
}
|
|
|
|
|
2015-12-17 21:54:35 +08:00
|
|
|
#endif /* __SOC_H_ */
|