Browse Source
Move and convert soc/x86/alder_lake to HWMv2 Signed-off-by: Dmitrii Golovanov <dmitrii.golovanov@intel.com>pull/69687/head
10 changed files with 17 additions and 6 deletions
@ -1,5 +1,7 @@ |
|||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
zephyr_include_directories(.) |
||||||
|
|
||||||
zephyr_library() |
zephyr_library() |
||||||
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) |
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) |
||||||
|
|
@ -1,9 +1,9 @@ |
|||||||
# Copyright (c) 2018-2023 Intel Corporation Inc. |
# Copyright (c) 2018-2024 Intel Corporation Inc. |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
config SOC_ALDER_LAKE |
config SOC_ALDER_LAKE |
||||||
bool "Intel Alder Lake SOC" |
|
||||||
select X86 |
select X86 |
||||||
|
select X86_64 |
||||||
select CPU_ATOM |
select CPU_ATOM |
||||||
select PCIE |
select PCIE |
||||||
select PCIE_MSI |
select PCIE_MSI |
@ -1,14 +1,11 @@ |
|||||||
# Alder Lake SoC configuration options |
# Alder Lake SoC configuration options |
||||||
|
|
||||||
# Copyright (c) 2018-2023 Intel Corporation |
# Copyright (c) 2018-2024 Intel Corporation |
||||||
# Copyright (c) 2014-2015 Wind River Systems, Inc. |
# Copyright (c) 2014-2015 Wind River Systems, Inc. |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
if SOC_ALDER_LAKE |
if SOC_ALDER_LAKE |
||||||
|
|
||||||
config SOC |
|
||||||
default "alder_lake" |
|
||||||
|
|
||||||
config PCIE_MMIO_CFG |
config PCIE_MMIO_CFG |
||||||
default y |
default y |
||||||
|
|
@ -0,0 +1,8 @@ |
|||||||
|
# Copyright (c) 2018-2024 Intel Corporation Inc. |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
config SOC_ALDER_LAKE |
||||||
|
bool |
||||||
|
|
||||||
|
config SOC |
||||||
|
default "alder_lake" if SOC_ALDER_LAKE |
@ -0,0 +1,4 @@ |
|||||||
|
vendor: intel |
||||||
|
comment: "Intel Alder Lake SoC" |
||||||
|
socs: |
||||||
|
- name: alder_lake |
Loading…
Reference in new issue