aboutsummaryrefslogtreecommitdiff
path: root/src/include/device/pnp_type.h
blob: 14dc40c3d4c5d549574a936222e7c4686c52f833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef __DEVICE_PNP_TYPE_H__
#define __DEVICE_PNP_TYPE_H__

#include <stdint.h>

typedef u32 pnp_devfn_t;

#define PNP_DEV(PORT, FUNC) (((PORT) << 8) | (FUNC))

#if defined(__SIMPLE_DEVICE__)
#define ENV_PNP_SIMPLE_DEVICE 1
#else
#define ENV_PNP_SIMPLE_DEVICE 0
#endif

#endif /* __DEVICE_PNP_TYPE_H__ */