License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2008-07-29 20:41:37 +08:00
|
|
|
menu "Board support"
|
|
|
|
|
|
|
|
config SOLUTION_ENGINE
|
|
|
|
bool
|
|
|
|
|
2011-01-13 17:31:25 +08:00
|
|
|
config SH_ALPHA_BOARD
|
|
|
|
bool
|
|
|
|
|
2016-01-23 08:45:41 +08:00
|
|
|
config SH_DEVICE_TREE
|
|
|
|
bool "Board Described by Device Tree"
|
|
|
|
select OF
|
|
|
|
select OF_EARLY_FLATTREE
|
2017-05-27 01:34:11 +08:00
|
|
|
select TIMER_OF
|
2016-07-31 11:11:30 +08:00
|
|
|
select COMMON_CLK
|
2016-01-23 08:45:41 +08:00
|
|
|
select GENERIC_CALIBRATE_DELAY
|
|
|
|
help
|
|
|
|
Select Board Described by Device Tree to build a kernel that
|
|
|
|
does not hard-code any board-specific knowledge but instead uses
|
|
|
|
a device tree blob provided by the boot-loader. You must enable
|
|
|
|
drivers for any hardware you want to use separately. At this
|
|
|
|
time, only boards based on the open-hardware J-Core processors
|
|
|
|
have sufficient driver coverage to use this option; do not
|
|
|
|
select it if you are using original SuperH hardware.
|
|
|
|
|
2016-10-14 03:51:47 +08:00
|
|
|
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.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
select CPU_HAS_IPR_IRQ
|
|
|
|
depends on CPU_SUBTYPE_SH7705 || CPU_SUBTYPE_SH7709 || CPU_SUBTYPE_SH7710 || \
|
|
|
|
CPU_SUBTYPE_SH7712 || CPU_SUBTYPE_SH7750 || CPU_SUBTYPE_SH7750S || \
|
|
|
|
CPU_SUBTYPE_SH7750R
|
|
|
|
help
|
|
|
|
Select SolutionEngine if configuring for a Hitachi SH7705, SH7709,
|
|
|
|
SH7710, SH7712, SH7750, SH7750S or SH7750R evaluation board.
|
|
|
|
|
|
|
|
config SH_7206_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7206"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
depends on CPU_SUBTYPE_SH7206
|
|
|
|
help
|
|
|
|
Select 7206 SolutionEngine if configuring for a Hitachi SH7206
|
|
|
|
evaluation board.
|
|
|
|
|
|
|
|
config SH_7619_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7619"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
depends on CPU_SUBTYPE_SH7619
|
|
|
|
help
|
|
|
|
Select 7619 SolutionEngine if configuring for a Hitachi SH7619
|
|
|
|
evaluation board.
|
|
|
|
|
|
|
|
config SH_7721_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7721"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
depends on CPU_SUBTYPE_SH7721
|
|
|
|
help
|
|
|
|
Select 7721 SolutionEngine if configuring for a Hitachi SH7721
|
|
|
|
evaluation board.
|
|
|
|
|
|
|
|
config SH_7722_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7722"
|
|
|
|
select SOLUTION_ENGINE
|
2012-05-24 17:24:32 +08:00
|
|
|
select GENERIC_IRQ_CHIP
|
|
|
|
select IRQ_DOMAIN
|
2008-07-29 20:41:37 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7722
|
|
|
|
help
|
|
|
|
Select 7722 SolutionEngine if configuring for a Hitachi SH772
|
|
|
|
evaluation board.
|
|
|
|
|
2009-05-26 15:04:52 +08:00
|
|
|
config SH_7724_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7724"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
depends on CPU_SUBTYPE_SH7724
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-04-09 12:18:28 +08:00
|
|
|
select SND_SOC_AK4642 if SND_SIMPLE_CARD
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2009-05-26 15:04:52 +08:00
|
|
|
help
|
|
|
|
Select 7724 SolutionEngine if configuring for a Hitachi SH7724
|
|
|
|
evaluation board.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_7751_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7751"
|
|
|
|
select SOLUTION_ENGINE
|
|
|
|
select CPU_HAS_IPR_IRQ
|
|
|
|
depends on CPU_SUBTYPE_SH7751
|
|
|
|
help
|
|
|
|
Select 7751 SolutionEngine if configuring for a Hitachi SH7751
|
|
|
|
evaluation board.
|
|
|
|
|
|
|
|
config SH_7780_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7780"
|
|
|
|
select SOLUTION_ENGINE
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7780
|
|
|
|
help
|
|
|
|
Select 7780 SolutionEngine if configuring for a Renesas SH7780
|
|
|
|
evaluation board.
|
|
|
|
|
|
|
|
config SH_7343_SOLUTION_ENGINE
|
|
|
|
bool "SolutionEngine7343"
|
|
|
|
select SOLUTION_ENGINE
|
2012-05-24 18:07:18 +08:00
|
|
|
select GENERIC_IRQ_CHIP
|
|
|
|
select IRQ_DOMAIN
|
2008-07-29 20:41:37 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7343
|
|
|
|
help
|
|
|
|
Select 7343 SolutionEngine if configuring for a Hitachi
|
|
|
|
SH7343 (SH-Mobile 3AS) evaluation board.
|
|
|
|
|
|
|
|
config SH_HP6XX
|
|
|
|
bool "HP6XX"
|
|
|
|
select SYS_SUPPORTS_APM_EMULATION
|
|
|
|
select HD6446X_SERIES
|
|
|
|
depends on CPU_SUBTYPE_SH7709
|
|
|
|
help
|
|
|
|
Select HP6XX if configuring for a HP jornada HP6xx.
|
|
|
|
More information (hardware only) at
|
|
|
|
<http://www.hp.com/jornada/>.
|
|
|
|
|
|
|
|
config SH_DREAMCAST
|
|
|
|
bool "Dreamcast"
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7091
|
|
|
|
help
|
|
|
|
Select Dreamcast if configuring for a SEGA Dreamcast.
|
|
|
|
More information at <http://www.linux-sh.org>
|
|
|
|
|
|
|
|
config SH_SH03
|
|
|
|
bool "Interface CTP/PCI-SH03"
|
|
|
|
depends on CPU_SUBTYPE_SH7751
|
|
|
|
select CPU_HAS_IPR_IRQ
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
CTP/PCI-SH03 is a CPU module computer that is produced
|
|
|
|
by Interface Corporation.
|
|
|
|
More information at <http://www.interface.co.jp>
|
|
|
|
|
|
|
|
config SH_SECUREEDGE5410
|
|
|
|
bool "SecureEdge5410"
|
|
|
|
depends on CPU_SUBTYPE_SH7751R
|
|
|
|
select CPU_HAS_IPR_IRQ
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select SecureEdge5410 if configuring for a SnapGear SH board.
|
|
|
|
This includes both the OEM SecureEdge products as well as the
|
|
|
|
SME product line.
|
|
|
|
|
|
|
|
config SH_RTS7751R2D
|
|
|
|
bool "RTS7751R2D"
|
|
|
|
depends on CPU_SUBTYPE_SH7751R
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2009-04-30 11:56:37 +08:00
|
|
|
select IO_TRAPPED if MMU
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select RTS7751R2D if configuring for a Renesas Technology
|
|
|
|
Sales SH-Graphics board.
|
|
|
|
|
2008-12-08 13:32:03 +08:00
|
|
|
config SH_RSK
|
|
|
|
bool "Renesas Starter Kit"
|
2012-05-10 16:26:53 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7201 || CPU_SUBTYPE_SH7203 || \
|
|
|
|
CPU_SUBTYPE_SH7264 || CPU_SUBTYPE_SH7269
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2008-12-08 13:32:03 +08:00
|
|
|
help
|
|
|
|
Select this option if configuring for any of the RSK+ MCU
|
|
|
|
evaluation platforms.
|
2008-07-29 20:41:37 +08:00
|
|
|
|
|
|
|
config SH_SDK7780
|
|
|
|
bool "SDK7780R3"
|
|
|
|
depends on CPU_SUBTYPE_SH7780
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select SDK7780 if configuring for a Renesas SH7780 SDK7780R3
|
|
|
|
evaluation board.
|
|
|
|
|
2010-01-14 19:58:58 +08:00
|
|
|
config SH_SDK7786
|
|
|
|
bool "SDK7786"
|
|
|
|
depends on CPU_SUBTYPE_SH7786
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2014-04-08 06:39:19 +08:00
|
|
|
select NO_IOPORT_MAP if !PCI
|
2010-10-15 01:13:04 +08:00
|
|
|
select HAVE_SRAM_POOL
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2010-01-14 19:58:58 +08:00
|
|
|
help
|
|
|
|
Select SDK7786 if configuring for a Renesas Technology Europe
|
|
|
|
SH7786-65nm board.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_HIGHLANDER
|
|
|
|
bool "Highlander"
|
|
|
|
depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2009-04-30 11:56:37 +08:00
|
|
|
select IO_TRAPPED if MMU
|
2008-07-29 20:41:37 +08:00
|
|
|
|
2010-07-06 12:32:16 +08:00
|
|
|
config SH_SH7757LCR
|
|
|
|
bool "SH7757LCR"
|
|
|
|
depends on CPU_SUBTYPE_SH7757
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2010-07-06 12:32:16 +08:00
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_SH7785LCR
|
|
|
|
bool "SH7785LCR"
|
|
|
|
depends on CPU_SUBTYPE_SH7785
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
|
|
|
|
config SH_SH7785LCR_29BIT_PHYSMAPS
|
|
|
|
bool "SH7785LCR 29bit physmaps"
|
2009-03-10 14:50:44 +08:00
|
|
|
depends on SH_SH7785LCR && 29BIT
|
2008-07-29 20:41:37 +08:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
This board has 2 physical memory maps. It can be changed with
|
|
|
|
DIP switch(S2-5). If you set the DIP switch for S2-5 = ON,
|
|
|
|
you can access all on-board device in 29bit address mode.
|
|
|
|
|
2009-08-27 21:57:26 +08:00
|
|
|
config SH_SH7785LCR_PT
|
|
|
|
bool "SH7785LCR prototype board on 32-bit MMU mode"
|
|
|
|
depends on SH_SH7785LCR && 32BIT
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If you use prototype board, this option is enabled.
|
|
|
|
|
2009-03-03 15:22:00 +08:00
|
|
|
config SH_URQUELL
|
|
|
|
bool "Urquell"
|
|
|
|
depends on CPU_SUBTYPE_SH7786
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2014-04-08 06:39:19 +08:00
|
|
|
select NO_IOPORT_MAP if !PCI
|
2009-03-03 15:22:00 +08:00
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_MIGOR
|
|
|
|
bool "Migo-R"
|
|
|
|
depends on CPU_SUBTYPE_SH7722
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select Migo-R if configuring for the SH7722 Migo-R platform
|
|
|
|
by Renesas System Solutions Asia Pte. Ltd.
|
|
|
|
|
|
|
|
config SH_AP325RXA
|
|
|
|
bool "AP-325RXA"
|
|
|
|
depends on CPU_SUBTYPE_SH7723
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Renesas "AP-325RXA" support.
|
|
|
|
Compatible with ALGO SYSTEM CO.,LTD. "AP-320A"
|
|
|
|
|
2009-07-23 00:20:54 +08:00
|
|
|
config SH_KFR2R09
|
|
|
|
bool "KFR2R09"
|
|
|
|
depends on CPU_SUBTYPE_SH7724
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2009-07-23 00:20:54 +08:00
|
|
|
help
|
|
|
|
"Kit For R2R for 2009" support.
|
|
|
|
|
2009-08-19 20:08:33 +08:00
|
|
|
config SH_ECOVEC
|
|
|
|
bool "EcoVec"
|
|
|
|
depends on CPU_SUBTYPE_SH7724
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-04-09 12:19:25 +08:00
|
|
|
select SND_SOC_DA7210 if SND_SIMPLE_CARD
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2009-08-19 20:08:33 +08:00
|
|
|
help
|
|
|
|
Renesas "R0P7724LC0011/21RL (EcoVec)" support.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_SH7763RDP
|
|
|
|
bool "SH7763RDP"
|
|
|
|
depends on CPU_SUBTYPE_SH7763
|
|
|
|
help
|
|
|
|
Select SH7763RDP if configuring for a Renesas SH7763
|
|
|
|
evaluation board.
|
|
|
|
|
2009-03-17 13:54:37 +08:00
|
|
|
config SH_ESPT
|
|
|
|
bool "ESPT"
|
|
|
|
depends on CPU_SUBTYPE_SH7763
|
|
|
|
help
|
|
|
|
Select ESPT if configuring for a Renesas SH7763
|
|
|
|
with gigabit ether evaluation board.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_EDOSK7705
|
|
|
|
bool "EDOSK7705"
|
|
|
|
depends on CPU_SUBTYPE_SH7705
|
|
|
|
|
2008-09-08 11:01:15 +08:00
|
|
|
config SH_EDOSK7760
|
|
|
|
bool "EDOSK7760"
|
|
|
|
depends on CPU_SUBTYPE_SH7760
|
|
|
|
help
|
|
|
|
Select if configuring for a Renesas EDOSK7760
|
|
|
|
evaluation board.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
config SH_SH4202_MICRODEV
|
|
|
|
bool "SH4-202 MicroDev"
|
|
|
|
depends on CPU_SUBTYPE_SH4_202
|
|
|
|
help
|
|
|
|
Select SH4-202 MicroDev if configuring for a SuperH MicroDev board
|
|
|
|
with an SH4-202 CPU.
|
|
|
|
|
|
|
|
config SH_LANDISK
|
|
|
|
bool "LANDISK"
|
|
|
|
depends on CPU_SUBTYPE_SH7751R
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
I-O DATA DEVICE, INC. "LANDISK Series" support.
|
|
|
|
|
|
|
|
config SH_TITAN
|
|
|
|
bool "TITAN"
|
|
|
|
depends on CPU_SUBTYPE_SH7751R
|
|
|
|
select CPU_HAS_IPR_IRQ
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select Titan if you are configuring for a Nimble Microsystems
|
|
|
|
NetEngine NP51R.
|
|
|
|
|
|
|
|
config SH_SHMIN
|
|
|
|
bool "SHMIN"
|
|
|
|
depends on CPU_SUBTYPE_SH7706
|
|
|
|
select CPU_HAS_IPR_IRQ
|
|
|
|
help
|
|
|
|
Select SHMIN if configuring for the SHMIN board.
|
|
|
|
|
|
|
|
config SH_LBOX_RE2
|
|
|
|
bool "L-BOX RE2"
|
|
|
|
depends on CPU_SUBTYPE_SH7751R
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select L-BOX RE2 if configuring for the NTT COMWARE L-BOX RE2.
|
|
|
|
|
|
|
|
config SH_X3PROTO
|
|
|
|
bool "SH-X3 Prototype board"
|
|
|
|
depends on CPU_SUBTYPE_SHX3
|
2014-04-08 06:39:19 +08:00
|
|
|
select NO_IOPORT_MAP if !PCI
|
2012-05-24 14:24:39 +08:00
|
|
|
select IRQ_DOMAIN
|
2008-07-29 20:41:37 +08:00
|
|
|
|
|
|
|
config SH_MAGIC_PANEL_R2
|
|
|
|
bool "Magic Panel R2"
|
|
|
|
depends on CPU_SUBTYPE_SH7720
|
2016-04-19 19:26:08 +08:00
|
|
|
select GPIOLIB
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2008-07-29 20:41:37 +08:00
|
|
|
help
|
|
|
|
Select Magic Panel R2 if configuring for Magic Panel R2.
|
|
|
|
|
|
|
|
config SH_CAYMAN
|
|
|
|
bool "Hitachi Cayman"
|
|
|
|
depends on CPU_SUBTYPE_SH5_101 || CPU_SUBTYPE_SH5_103
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2014-01-02 03:32:52 +08:00
|
|
|
select ARCH_MIGHT_HAVE_PC_SERIO
|
2008-07-29 20:41:37 +08:00
|
|
|
|
2009-03-20 22:16:29 +08:00
|
|
|
config SH_POLARIS
|
|
|
|
bool "SMSC Polaris"
|
|
|
|
select CPU_HAS_IPR_IRQ
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2009-03-20 22:16:29 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7709
|
|
|
|
help
|
|
|
|
Select if configuring for an SMSC Polaris development board
|
|
|
|
|
2010-06-21 14:10:51 +08:00
|
|
|
config SH_SH2007
|
|
|
|
bool "SH-2007 board"
|
2014-04-08 06:39:19 +08:00
|
|
|
select NO_IOPORT_MAP
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2010-06-21 14:10:51 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7780
|
|
|
|
help
|
|
|
|
SH-2007 is a single-board computer based around SH7780 chip
|
|
|
|
intended for embedded applications.
|
|
|
|
It has an Ethernet interface (SMC9118), direct connected
|
|
|
|
Compact Flash socket, two serial ports and PC-104 bus.
|
|
|
|
More information at <http://sh2000.sh-linux.org>.
|
|
|
|
|
2011-01-13 17:32:42 +08:00
|
|
|
config SH_APSH4A3A
|
|
|
|
bool "AP-SH4A-3A"
|
|
|
|
select SH_ALPHA_BOARD
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2011-01-13 17:32:42 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7785
|
|
|
|
help
|
|
|
|
Select AP-SH4A-3A if configuring for an ALPHAPROJECT AP-SH4A-3A.
|
|
|
|
|
2011-01-13 17:36:21 +08:00
|
|
|
config SH_APSH4AD0A
|
|
|
|
bool "AP-SH4AD-0A"
|
|
|
|
select SH_ALPHA_BOARD
|
2018-11-16 03:05:32 +08:00
|
|
|
select HAVE_PCI
|
2012-07-05 21:18:50 +08:00
|
|
|
select REGULATOR_FIXED_VOLTAGE if REGULATOR
|
2011-01-13 17:36:21 +08:00
|
|
|
depends on CPU_SUBTYPE_SH7786
|
|
|
|
help
|
|
|
|
Select AP-SH4AD-0A if configuring for an ALPHAPROJECT AP-SH4AD-0A.
|
|
|
|
|
2008-07-29 20:41:37 +08:00
|
|
|
source "arch/sh/boards/mach-r2d/Kconfig"
|
|
|
|
source "arch/sh/boards/mach-highlander/Kconfig"
|
|
|
|
source "arch/sh/boards/mach-sdk7780/Kconfig"
|
|
|
|
source "arch/sh/boards/mach-migor/Kconfig"
|
2008-12-08 13:32:03 +08:00
|
|
|
source "arch/sh/boards/mach-rsk/Kconfig"
|
2008-07-29 23:13:39 +08:00
|
|
|
|
|
|
|
if SH_MAGIC_PANEL_R2
|
|
|
|
|
|
|
|
menu "Magic Panel R2 options"
|
|
|
|
|
|
|
|
config SH_MAGIC_PANEL_R2_VERSION
|
2014-06-11 18:03:49 +08:00
|
|
|
int "Magic Panel R2 Version"
|
2008-07-29 23:13:39 +08:00
|
|
|
default "3"
|
|
|
|
help
|
|
|
|
Set the version of the Magic Panel R2
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
endif
|
2012-04-19 16:29:38 +08:00
|
|
|
|
|
|
|
endmenu
|