Browse Source
Move and convert soc/x86/raptor_lake to HWMv2 Signed-off-by: Dmitrii Golovanov <dmitrii.golovanov@intel.com>pull/69687/head
9 changed files with 16 additions and 5 deletions
@ -1,5 +1,7 @@ |
|||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
zephyr_include_directories(.) |
||||||
|
|
||||||
zephyr_cc_option(-march=goldmont) |
zephyr_cc_option(-march=goldmont) |
||||||
|
|
||||||
set(SOC_LINKER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld CACHE INTERNAL "") |
set(SOC_LINKER_SCRIPT ${CMAKE_CURRENT_SOURCE_DIR}/linker.ld CACHE INTERNAL "") |
@ -1,9 +1,9 @@ |
|||||||
# Copyright (c) 2022 Intel Corporation Inc. |
# Copyright (c) 2022-2024 Intel Corporation Inc. |
||||||
# SPDX-License-Identifier: Apache-2.0 |
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
config SOC_RAPTOR_LAKE |
config SOC_RAPTOR_LAKE |
||||||
bool "Intel Raptor 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 |
@ -0,0 +1,8 @@ |
|||||||
|
# Copyright (c) 2022-2024 Intel Corporation Inc. |
||||||
|
# SPDX-License-Identifier: Apache-2.0 |
||||||
|
|
||||||
|
config SOC_RAPTOR_LAKE |
||||||
|
bool |
||||||
|
|
||||||
|
config SOC |
||||||
|
default "raptor_lake" if SOC_RAPTOR_LAKE |
@ -0,0 +1,4 @@ |
|||||||
|
vendor: intel |
||||||
|
comment: "Intel Raptor Lake SoC" |
||||||
|
socs: |
||||||
|
- name: raptor_lake |
Loading…
Reference in new issue