2007-02-11 18:31:01 +01:00
|
|
|
# Copyright 2007 Simtec Electronics
|
|
|
|
#
|
|
|
|
# Licensed under GPLv2
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config CPU_S3C2410
|
|
|
|
bool
|
|
|
|
depends on ARCH_S3C2410
|
2008-10-26 11:55:14 +01:00
|
|
|
select CPU_ARM920T
|
2007-02-11 18:31:01 +01:00
|
|
|
select S3C2410_CLOCK
|
2007-07-22 17:09:44 +02:00
|
|
|
select CPU_LLSERIAL_S3C2410
|
2007-02-11 18:31:01 +01:00
|
|
|
select S3C2410_PM if PM
|
2009-07-31 00:23:27 +02:00
|
|
|
select S3C2410_CPUFREQ if CPU_FREQ_S3C24XX
|
2007-02-11 18:31:01 +01:00
|
|
|
help
|
|
|
|
Support for S3C2410 and S3C2410A family from the S3C24XX line
|
|
|
|
of Samsung Mobile CPUs.
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config CPU_S3C2410_DMA
|
|
|
|
bool
|
|
|
|
depends on S3C2410_DMA && (CPU_S3C2410 || CPU_S3C2442)
|
|
|
|
default y if CPU_S3C2410 || CPU_S3C2442
|
2006-09-21 23:57:12 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
DMA device selection for S3C2410 and compatible CPUs
|
2006-09-21 23:57:12 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config S3C2410_PM
|
|
|
|
bool
|
2005-09-07 12:49:23 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Power Management code common to S3C2410 and better
|
2005-09-07 12:49:23 +02:00
|
|
|
|
2008-07-03 12:24:39 +02:00
|
|
|
config SIMTEC_NOR
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Internal node to specify machine has simtec NOR mapping
|
|
|
|
|
2008-07-03 12:24:37 +02:00
|
|
|
config MACH_BAST_IDE
|
|
|
|
bool
|
|
|
|
select HAVE_PATA_PLATFORM
|
|
|
|
help
|
|
|
|
Internal node for machines with an BAST style IDE
|
|
|
|
interface
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-07-31 00:23:27 +02:00
|
|
|
# cpu frequency scaling support
|
|
|
|
|
|
|
|
config S3C2410_CPUFREQ
|
|
|
|
bool
|
|
|
|
depends on CPU_FREQ_S3C24XX && CPU_S3C2410
|
|
|
|
select S3C2410_CPUFREQ_UTILS
|
|
|
|
help
|
|
|
|
CPU Frequency scaling support for S3C2410
|
|
|
|
|
2009-07-31 00:23:28 +02:00
|
|
|
config S3C2410_PLLTABLE
|
|
|
|
bool
|
|
|
|
depends on S3C2410_CPUFREQ && CPU_FREQ_S3C24XX_PLL
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Select the PLL table for the S3C2410
|
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
menu "S3C2410 Machines"
|
2005-09-07 18:24:48 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config ARCH_SMDK2410
|
|
|
|
bool "SMDK2410/A9M2410"
|
|
|
|
select CPU_S3C2410
|
|
|
|
select MACH_SMDK
|
2006-12-07 20:47:58 +01:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Say Y here if you are using the SMDK2410 or the derived module A9M2410
|
|
|
|
<http://www.fsforth.de>
|
2006-12-07 20:47:58 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config ARCH_H1940
|
|
|
|
bool "IPAQ H1940"
|
|
|
|
select CPU_S3C2410
|
2006-12-18 00:39:47 +01:00
|
|
|
select PM_H1940 if PM
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2009-09-17 01:01:54 +02:00
|
|
|
select S3C_DEV_NAND
|
2010-05-18 13:44:27 +02:00
|
|
|
select S3C2410_SETUP_TS
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
|
|
|
Say Y here if you are using the HP IPAQ H1940
|
|
|
|
|
2009-11-17 14:54:59 +01:00
|
|
|
config H1940BT
|
|
|
|
tristate "Control the state of H1940 bluetooth chip"
|
|
|
|
depends on ARCH_H1940
|
|
|
|
select RFKILL
|
|
|
|
help
|
|
|
|
This is a simple driver that is able to control
|
|
|
|
the state of built in bluetooth chip on h1940.
|
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config PM_H1940
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Internal node for H1940 and related PM
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
config MACH_N30
|
2008-07-07 19:12:45 +02:00
|
|
|
bool "Acer N30 family"
|
2005-04-17 00:20:36 +02:00
|
|
|
select CPU_S3C2410
|
2010-05-06 15:18:06 +02:00
|
|
|
select MACH_N35
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2009-09-17 01:01:54 +02:00
|
|
|
select S3C_DEV_NAND
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
2008-07-07 19:12:45 +02:00
|
|
|
Say Y here if you want suppt for the Acer N30, Acer N35,
|
|
|
|
Navman PiN570, Yakumo AlphaX or Airis NC05 PDAs.
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-05-06 15:18:06 +02:00
|
|
|
config MACH_N35
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Internal node in order to enable support for Acer N35 if Acer N30 is
|
|
|
|
selected.
|
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config ARCH_BAST
|
|
|
|
bool "Simtec Electronics BAST (EB2410ITX)"
|
2005-04-17 00:20:36 +02:00
|
|
|
select CPU_S3C2410
|
2009-07-31 00:23:27 +02:00
|
|
|
select S3C2410_IOTIMING if S3C2410_CPUFREQ
|
2007-02-11 18:31:01 +01:00
|
|
|
select PM_SIMTEC if PM
|
2008-07-03 12:24:39 +02:00
|
|
|
select SIMTEC_NOR
|
2008-07-03 12:24:37 +02:00
|
|
|
select MACH_BAST_IDE
|
2008-10-21 15:06:33 +02:00
|
|
|
select S3C24XX_DCLK
|
2007-02-11 18:31:01 +01:00
|
|
|
select ISA
|
2010-05-04 13:12:32 +02:00
|
|
|
select S3C_DEV_HWMON
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2009-09-17 01:01:54 +02:00
|
|
|
select S3C_DEV_NAND
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Say Y here if you are using the Simtec Electronics EB2410ITX
|
|
|
|
development board (also known as BAST)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config MACH_OTOM
|
|
|
|
bool "NexVision OTOM Board"
|
|
|
|
select CPU_S3C2410
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2009-09-17 01:01:54 +02:00
|
|
|
select S3C_DEV_NAND
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Say Y here if you are using the Nex Vision OTOM board
|
2006-06-19 00:06:41 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config MACH_AML_M5900
|
|
|
|
bool "AML M5900 Series"
|
|
|
|
select CPU_S3C2410
|
|
|
|
select PM_SIMTEC if PM
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2006-09-14 14:29:13 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Say Y here if you are using the American Microsystems M5900 Series
|
|
|
|
<http://www.amltd.com>
|
2006-09-14 14:29:13 +02:00
|
|
|
|
2007-02-11 18:31:01 +01:00
|
|
|
config BAST_PC104_IRQ
|
|
|
|
bool "BAST PC104 IRQ support"
|
|
|
|
depends on ARCH_BAST
|
|
|
|
default y
|
2006-06-24 22:21:35 +02:00
|
|
|
help
|
2007-02-11 18:31:01 +01:00
|
|
|
Say Y here to enable the PC104 IRQ routing on the
|
|
|
|
Simtec BAST (EB2410ITX)
|
2006-06-19 00:06:41 +02:00
|
|
|
|
2008-04-10 23:36:59 +02:00
|
|
|
config MACH_TCT_HAMMER
|
|
|
|
bool "TCT Hammer Board"
|
|
|
|
select CPU_S3C2410
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2008-04-10 23:36:59 +02:00
|
|
|
help
|
|
|
|
Say Y here if you are using the TinCanTools Hammer Board
|
|
|
|
<http://www.tincantools.com>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config MACH_VR1000
|
|
|
|
bool "Thorcom VR1000"
|
2006-12-19 23:46:17 +01:00
|
|
|
select PM_SIMTEC if PM
|
2008-10-21 15:06:33 +02:00
|
|
|
select S3C24XX_DCLK
|
2008-07-03 12:24:39 +02:00
|
|
|
select SIMTEC_NOR
|
2008-07-03 12:24:37 +02:00
|
|
|
select MACH_BAST_IDE
|
2005-04-17 00:20:36 +02:00
|
|
|
select CPU_S3C2410
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2005-04-17 00:20:36 +02:00
|
|
|
help
|
|
|
|
Say Y here if you are using the Thorcom VR1000 board.
|
|
|
|
|
2007-02-17 00:52:37 +01:00
|
|
|
config MACH_QT2410
|
|
|
|
bool "QT2410"
|
|
|
|
select CPU_S3C2410
|
2009-03-06 20:49:48 +01:00
|
|
|
select S3C_DEV_USB_HOST
|
2009-09-17 01:01:54 +02:00
|
|
|
select S3C_DEV_NAND
|
2007-02-17 00:52:37 +01:00
|
|
|
help
|
|
|
|
Say Y here if you are using the Armzone QT2410
|
2006-09-20 21:32:33 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
endmenu
|