1 /*
2  * Copyright (c) 2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef __SOC_H_
8 #define __SOC_H_
9 
10 #ifdef CONFIG_BOARD_QEMU_X86_LAKEMONT
11 /* QEMU uses IO port based UART */
12 #define UART_NS16550_ACCESS_IOPORT 0x3f8
13 #endif
14 
15 #endif /* __SOC_H_ */
16