Browse Source
Ports the snps_emsk SoC configuration to hardware model version 2 Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>pull/69687/head
11 changed files with 51 additions and 30 deletions
@ -1,14 +0,0 @@
@@ -1,14 +0,0 @@
|
||||
# Copyright (c) 2014 Wind River Systems, Inc. |
||||
# Copyright (c) 2018 Synopsys, Inc. All rights reserved. |
||||
# SPDX-License-Identifier: Apache-2.0 |
||||
|
||||
if SOC_EMSK |
||||
|
||||
config SOC |
||||
default "snps_emsk" |
||||
|
||||
source "soc/soc_legacy/arc/snps_emsk/Kconfig.defconfig.em7d" |
||||
source "soc/soc_legacy/arc/snps_emsk/Kconfig.defconfig.em11d" |
||||
source "soc/soc_legacy/arc/snps_emsk/Kconfig.defconfig.em9d" |
||||
|
||||
endif # SOC_EMSK |
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2014 Wind River Systems, Inc. |
||||
# Copyright (c) 2018 Synopsys, Inc. All rights reserved. |
||||
# SPDX-License-Identifier: Apache-2.0 |
||||
|
||||
config SOC_EMSK |
||||
bool |
||||
help |
||||
Synopsys ARC EM Starter Kit SoC |
||||
|
||||
config SOC_EMSK_EM7D |
||||
bool |
||||
select SOC_EMSK |
||||
help |
||||
Synopsys ARC EM7D of EMSK |
||||
|
||||
config SOC_EMSK_EM9D |
||||
bool |
||||
select SOC_EMSK |
||||
help |
||||
Synopsys ARC EM9D of EMSK |
||||
|
||||
config SOC_EMSK_EM11D |
||||
bool |
||||
select SOC_EMSK |
||||
help |
||||
Synopsys ARC EM11D of EMSK |
||||
|
||||
config SOC_SERIES |
||||
default "emsk" if SOC_EMSK |
||||
|
||||
config SOC |
||||
default "emsk_em7d" if SOC_EMSK_EM7D |
||||
default "emsk_em9d" if SOC_EMSK_EM9D |
||||
default "emsk_em11d" if SOC_EMSK_EM11D |
@ -0,0 +1,6 @@
@@ -0,0 +1,6 @@
|
||||
series: |
||||
- name: emsk |
||||
socs: |
||||
- name: emsk_em7d |
||||
- name: emsk_em9d |
||||
- name: emsk_em11d |
Loading…
Reference in new issue