mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
Minor changes to improve J2 support and match Kconfig expectations of
other subsystems. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQEcBAABAgAGBQJYB69cAAoJELcQ+SIFb8Hau0IH/3UBLH7YvoPomqZU3OhPzLMr 49HgPJEcDNYv6piU+VlT3RK16GJcjobJF6OFlbNvCqvt/IqnrR3eX4LD2Tv0d7z1 XlLQ0Re9pL3Lbe4Mo3YdiZrh+Zv6yzMsQqpbUSf298VvwZ84AoLWVTJ+oobGTTP/ 77PPyZiRxgVsC+3YERk49Af48xpt3Bm2pNhT1wutf7+OW2aatA/v9LIsz9zAzhRN gULZ9l+9w2pT9sVT6ho7w3Xm00kvGr/MW3AjbnMaHey3cpjkvj8VGmF0X6/d/4ct Tqygpe1nMXjbIvQ1Zg3uH3qbjo8N27ajoQaaOaWa80SGc2Urf8zDswCcagljCDU= =Lqsd -----END PGP SIGNATURE----- Merge tag 'sh-for-4.9' of git://git.libc.org/linux-sh Pull arch/sh updates from Rich Felker: "Minor changes to improve J2 support and match Kconfig expectations of other subsystems" * tag 'sh-for-4.9' of git://git.libc.org/linux-sh: sh: add earlycon support to j2_defconfig sh: add Kconfig option for J-Core SoC core drivers sh: support CPU_J2 when compiler lacks -mj2
This commit is contained in:
commit
147fdd8cf1
@ -31,7 +31,7 @@ isa-y := $(isa-y)-up
|
||||
endif
|
||||
|
||||
cflags-$(CONFIG_CPU_SH2) := $(call cc-option,-m2,)
|
||||
cflags-$(CONFIG_CPU_J2) := $(call cc-option,-mj2,)
|
||||
cflags-$(CONFIG_CPU_J2) += $(call cc-option,-mj2,)
|
||||
cflags-$(CONFIG_CPU_SH2A) += $(call cc-option,-m2a,) \
|
||||
$(call cc-option,-m2a-nofpu,) \
|
||||
$(call cc-option,-m4-nofpu,)
|
||||
|
@ -22,6 +22,16 @@ config SH_DEVICE_TREE
|
||||
have sufficient driver coverage to use this option; do not
|
||||
select it if you are using original SuperH hardware.
|
||||
|
||||
config SH_JCORE_SOC
|
||||
bool "J-Core SoC"
|
||||
depends on SH_DEVICE_TREE && (CPU_SH2 || CPU_J2)
|
||||
select CLKSRC_JCORE_PIT
|
||||
select JCORE_AIC
|
||||
default y if CPU_J2
|
||||
help
|
||||
Select this option to include drivers core components of the
|
||||
J-Core SoC, including interrupt controllers and timers.
|
||||
|
||||
config SH_SOLUTION_ENGINE
|
||||
bool "SolutionEngine"
|
||||
select SOLUTION_ENGINE
|
||||
|
@ -8,6 +8,7 @@ CONFIG_MEMORY_START=0x10000000
|
||||
CONFIG_MEMORY_SIZE=0x04000000
|
||||
CONFIG_CPU_BIG_ENDIAN=y
|
||||
CONFIG_SH_DEVICE_TREE=y
|
||||
CONFIG_SH_JCORE_SOC=y
|
||||
CONFIG_HZ_100=y
|
||||
CONFIG_CMDLINE_OVERWRITE=y
|
||||
CONFIG_CMDLINE="console=ttyUL0 earlycon"
|
||||
@ -20,6 +21,7 @@ CONFIG_INET=y
|
||||
CONFIG_DEVTMPFS=y
|
||||
CONFIG_DEVTMPFS_MOUNT=y
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_SERIAL_EARLYCON=y
|
||||
CONFIG_SERIAL_UARTLITE=y
|
||||
CONFIG_SERIAL_UARTLITE_CONSOLE=y
|
||||
CONFIG_I2C=y
|
||||
|
Loading…
Reference in New Issue
Block a user