Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. # arch/arm/mach-s3c24xx/Kconfig
  2. #
  3. # Copyright (c) 2012 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Copyright 2007 Simtec Electronics
  7. #
  8. # Licensed under GPLv2
  9. if ARCH_S3C24XX
  10. config PLAT_S3C24XX
  11. def_bool y
  12. select ARCH_REQUIRE_GPIOLIB
  13. select NO_IOPORT
  14. select S3C_DEV_NAND
  15. select IRQ_DOMAIN
  16. help
  17. Base platform code for any Samsung S3C24XX device
  18. menu "SAMSUNG S3C24XX SoCs Support"
  19. comment "S3C24XX SoCs"
  20. config CPU_S3C2410
  21. bool "SAMSUNG S3C2410"
  22. default y
  23. select CPU_ARM920T
  24. select CPU_LLSERIAL_S3C2410
  25. select S3C2410_CLOCK
  26. select ARM_S3C2410_CPUFREQ if ARM_S3C24XX_CPUFREQ
  27. select S3C2410_PM if PM
  28. select SAMSUNG_WDT_RESET
  29. help
  30. Support for S3C2410 and S3C2410A family from the S3C24XX line
  31. of Samsung Mobile CPUs.
  32. config CPU_S3C2412
  33. bool "SAMSUNG S3C2412"
  34. select CPU_ARM926T
  35. select CPU_LLSERIAL_S3C2440
  36. select S3C2412_DMA if S3C24XX_DMA
  37. select S3C2412_PM if PM
  38. help
  39. Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line
  40. config CPU_S3C2416
  41. bool "SAMSUNG S3C2416/S3C2450"
  42. select CPU_ARM926T
  43. select CPU_LLSERIAL_S3C2440
  44. select S3C2416_PM if PM
  45. select S3C2443_COMMON
  46. select S3C2443_DMA if S3C24XX_DMA
  47. select SAMSUNG_CLKSRC
  48. help
  49. Support for the S3C2416 SoC from the S3C24XX line
  50. config CPU_S3C2440
  51. bool "SAMSUNG S3C2440"
  52. select CPU_ARM920T
  53. select CPU_LLSERIAL_S3C2440
  54. select S3C2410_CLOCK
  55. select S3C2410_PM if PM
  56. select S3C2440_DMA if S3C24XX_DMA
  57. help
  58. Support for S3C2440 Samsung Mobile CPU based systems.
  59. config CPU_S3C2442
  60. bool "SAMSUNG S3C2442"
  61. select CPU_ARM920T
  62. select CPU_LLSERIAL_S3C2440
  63. select S3C2410_CLOCK
  64. select S3C2410_PM if PM
  65. help
  66. Support for S3C2442 Samsung Mobile CPU based systems.
  67. config CPU_S3C244X
  68. def_bool y
  69. depends on CPU_S3C2440 || CPU_S3C2442
  70. select SAMSUNG_WDT_RESET
  71. config CPU_S3C2443
  72. bool "SAMSUNG S3C2443"
  73. select CPU_ARM920T
  74. select CPU_LLSERIAL_S3C2440
  75. select S3C2443_COMMON
  76. select S3C2443_DMA if S3C24XX_DMA
  77. select SAMSUNG_CLKSRC
  78. help
  79. Support for the S3C2443 SoC from the S3C24XX line
  80. # common code
  81. config S3C2410_CLOCK
  82. bool
  83. help
  84. Clock code for the S3C2410, and similar processors which
  85. is currently includes the S3C2410, S3C2440, S3C2442.
  86. config S3C24XX_DCLK
  87. bool
  88. help
  89. Clock code for supporting DCLK/CLKOUT on S3C24XX architectures
  90. config S3C24XX_SMDK
  91. bool
  92. help
  93. Common machine code for SMDK2410 and SMDK2440
  94. config S3C24XX_SIMTEC_AUDIO
  95. bool
  96. depends on (ARCH_BAST || MACH_VR1000 || MACH_OSIRIS || MACH_ANUBIS)
  97. default y
  98. help
  99. Add audio devices for common Simtec S3C24XX boards
  100. config S3C24XX_SIMTEC_PM
  101. bool
  102. help
  103. Common power management code for systems that are
  104. compatible with the Simtec style of power management
  105. config S3C24XX_SIMTEC_USB
  106. bool
  107. help
  108. USB management code for common Simtec S3C24XX boards
  109. config S3C24XX_SETUP_TS
  110. bool
  111. help
  112. Compile in platform device definition for Samsung TouchScreen.
  113. config S3C24XX_DMA
  114. bool "S3C2410 DMA support"
  115. select S3C_DMA
  116. help
  117. S3C2410 DMA support. This is needed for drivers like sound which
  118. use the S3C2410's DMA system to move data to and from the
  119. peripheral blocks.
  120. config S3C2410_DMA_DEBUG
  121. bool "S3C2410 DMA support debug"
  122. depends on S3C2410_DMA
  123. help
  124. Enable debugging output for the DMA code. This option sends info
  125. to the kernel log, at priority KERN_DEBUG.
  126. config S3C2410_DMA
  127. bool
  128. depends on S3C24XX_DMA && (CPU_S3C2410 || CPU_S3C2442)
  129. default y if CPU_S3C2410 || CPU_S3C2442
  130. help
  131. DMA device selection for S3C2410 and compatible CPUs
  132. config S3C2410_PM
  133. bool
  134. help
  135. Power Management code common to S3C2410 and better
  136. # low-level serial option nodes
  137. config CPU_LLSERIAL_S3C2410_ONLY
  138. bool
  139. default y if CPU_LLSERIAL_S3C2410 && !CPU_LLSERIAL_S3C2440
  140. config CPU_LLSERIAL_S3C2440_ONLY
  141. bool
  142. default y if CPU_LLSERIAL_S3C2440 && !CPU_LLSERIAL_S3C2410
  143. config CPU_LLSERIAL_S3C2410
  144. bool
  145. help
  146. Selected if there is an S3C2410 (or register compatible) serial
  147. low-level implementation needed
  148. config CPU_LLSERIAL_S3C2440
  149. bool
  150. help
  151. Selected if there is an S3C2440 (or register compatible) serial
  152. low-level implementation needed
  153. # gpio configurations
  154. config S3C24XX_GPIO_EXTRA
  155. int
  156. default 128 if S3C24XX_GPIO_EXTRA128
  157. default 64 if S3C24XX_GPIO_EXTRA64
  158. default 16 if ARCH_H1940
  159. default 0
  160. config S3C24XX_GPIO_EXTRA64
  161. bool
  162. help
  163. Add an extra 64 gpio numbers to the available GPIO pool. This is
  164. available for boards that need extra gpios for external devices.
  165. config S3C24XX_GPIO_EXTRA128
  166. bool
  167. help
  168. Add an extra 128 gpio numbers to the available GPIO pool. This is
  169. available for boards that need extra gpios for external devices.
  170. config S3C24XX_PLL
  171. bool "Support CPUfreq changing of PLL frequency (EXPERIMENTAL)"
  172. depends on ARM_S3C24XX_CPUFREQ
  173. help
  174. Compile in support for changing the PLL frequency from the
  175. S3C24XX series CPUfreq driver. The PLL takes time to settle
  176. after a frequency change, so by default it is not enabled.
  177. This also means that the PLL tables for the selected CPU(s) will
  178. be built which may increase the size of the kernel image.
  179. # cpu frequency items common between s3c2410 and s3c2440/s3c2442
  180. config S3C2410_IOTIMING
  181. bool
  182. depends on ARM_S3C24XX_CPUFREQ
  183. help
  184. Internal node to select io timing code that is common to the s3c2410
  185. and s3c2440/s3c2442 cpu frequency support.
  186. config S3C2410_CPUFREQ_UTILS
  187. bool
  188. depends on ARM_S3C24XX_CPUFREQ
  189. help
  190. Internal node to select timing code that is common to the s3c2410
  191. and s3c2440/s3c244 cpu frequency support.
  192. # cpu frequency support common to s3c2412, s3c2413 and s3c2442
  193. config S3C2412_IOTIMING
  194. bool
  195. depends on ARM_S3C24XX_CPUFREQ && (CPU_S3C2412 || CPU_S3C2443)
  196. help
  197. Intel node to select io timing code that is common to the s3c2412
  198. and the s3c2443.
  199. # cpu-specific sections
  200. if CPU_S3C2410
  201. config S3C2410_PLL
  202. bool
  203. depends on ARM_S3C2410_CPUFREQ && S3C24XX_PLL
  204. default y
  205. help
  206. Select the PLL table for the S3C2410
  207. config S3C24XX_SIMTEC_NOR
  208. bool
  209. help
  210. Internal node to specify machine has simtec NOR mapping
  211. config MACH_BAST_IDE
  212. bool
  213. select HAVE_PATA_PLATFORM
  214. help
  215. Internal node for machines with an BAST style IDE
  216. interface
  217. comment "S3C2410 Boards"
  218. #
  219. # The "S3C2410 Boards" list is ordered alphabetically by option text.
  220. # (without ARCH_ or MACH_)
  221. #
  222. config MACH_AML_M5900
  223. bool "AML M5900 Series"
  224. select S3C24XX_SIMTEC_PM if PM
  225. select S3C_DEV_USB_HOST
  226. help
  227. Say Y here if you are using the American Microsystems M5900 Series
  228. <http://www.amltd.com>
  229. config ARCH_BAST
  230. bool "Simtec Electronics BAST (EB2410ITX)"
  231. select ISA
  232. select MACH_BAST_IDE
  233. select S3C2410_IOTIMING if ARM_S3C2410_CPUFREQ
  234. select S3C24XX_DCLK
  235. select S3C24XX_SIMTEC_NOR
  236. select S3C24XX_SIMTEC_PM if PM
  237. select S3C24XX_SIMTEC_USB
  238. select S3C_DEV_HWMON
  239. select S3C_DEV_NAND
  240. select S3C_DEV_USB_HOST
  241. help
  242. Say Y here if you are using the Simtec Electronics EB2410ITX
  243. development board (also known as BAST)
  244. config BAST_PC104_IRQ
  245. bool "BAST PC104 IRQ support"
  246. depends on ARCH_BAST
  247. default y
  248. help
  249. Say Y here to enable the PC104 IRQ routing on the
  250. Simtec BAST (EB2410ITX)
  251. config ARCH_H1940
  252. bool "IPAQ H1940"
  253. select PM_H1940 if PM
  254. select S3C24XX_SETUP_TS
  255. select S3C_DEV_NAND
  256. select S3C_DEV_USB_HOST
  257. help
  258. Say Y here if you are using the HP IPAQ H1940
  259. config H1940BT
  260. tristate "Control the state of H1940 bluetooth chip"
  261. depends on ARCH_H1940
  262. select RFKILL
  263. help
  264. This is a simple driver that is able to control
  265. the state of built in bluetooth chip on h1940.
  266. config PM_H1940
  267. bool
  268. help
  269. Internal node for H1940 and related PM
  270. config MACH_N30
  271. bool "Acer N30 family"
  272. select S3C_DEV_NAND
  273. select S3C_DEV_USB_HOST
  274. help
  275. Say Y here if you want suppt for the Acer N30, Acer N35,
  276. Navman PiN570, Yakumo AlphaX or Airis NC05 PDAs.
  277. config MACH_OTOM
  278. bool "NexVision OTOM Board"
  279. select S3C_DEV_NAND
  280. select S3C_DEV_USB_HOST
  281. help
  282. Say Y here if you are using the Nex Vision OTOM board
  283. config MACH_QT2410
  284. bool "QT2410"
  285. select S3C_DEV_NAND
  286. select S3C_DEV_USB_HOST
  287. help
  288. Say Y here if you are using the Armzone QT2410
  289. config ARCH_SMDK2410
  290. bool "SMDK2410/A9M2410"
  291. select S3C24XX_SMDK
  292. select S3C_DEV_USB_HOST
  293. help
  294. Say Y here if you are using the SMDK2410 or the derived module A9M2410
  295. <http://www.fsforth.de>
  296. config MACH_TCT_HAMMER
  297. bool "TCT Hammer Board"
  298. select S3C_DEV_USB_HOST
  299. help
  300. Say Y here if you are using the TinCanTools Hammer Board
  301. <http://www.tincantools.com>
  302. config MACH_VR1000
  303. bool "Thorcom VR1000"
  304. select MACH_BAST_IDE
  305. select S3C24XX_DCLK
  306. select S3C24XX_SIMTEC_NOR
  307. select S3C24XX_SIMTEC_PM if PM
  308. select S3C24XX_SIMTEC_USB
  309. select S3C_DEV_USB_HOST
  310. help
  311. Say Y here if you are using the Thorcom VR1000 board.
  312. endif # CPU_S3C2410
  313. config S3C2412_PM_SLEEP
  314. bool
  315. help
  316. Internal config node to apply sleep for S3C2412 power management.
  317. Can be selected by another SoCs such as S3C2416 with similar
  318. sleep procedure.
  319. if CPU_S3C2412
  320. config CPU_S3C2412_ONLY
  321. bool
  322. depends on !CPU_S3C2410 && !CPU_S3C2416 && !CPU_S3C2440 && \
  323. !CPU_S3C2442 && !CPU_S3C2443
  324. default y
  325. config S3C2412_DMA
  326. bool
  327. help
  328. Internal config node for S3C2412 DMA support
  329. config S3C2412_PM
  330. bool
  331. select S3C2412_PM_SLEEP
  332. select SAMSUNG_WAKEMASK
  333. help
  334. Internal config node to apply S3C2412 power management
  335. comment "S3C2412 Boards"
  336. #
  337. # The "S3C2412 Boards" list is ordered alphabetically by option text.
  338. # (without ARCH_ or MACH_)
  339. #
  340. config MACH_JIVE
  341. bool "Logitech Jive"
  342. select S3C_DEV_NAND
  343. select S3C_DEV_USB_HOST
  344. help
  345. Say Y here if you are using the Logitech Jive.
  346. config MACH_JIVE_SHOW_BOOTLOADER
  347. bool "Allow access to bootloader partitions in MTD"
  348. depends on MACH_JIVE
  349. config MACH_S3C2413
  350. bool
  351. help
  352. Internal node for S3C2413 version of SMDK2413, so that
  353. machine_is_s3c2413() will work when MACH_SMDK2413 is
  354. selected
  355. config MACH_SMDK2412
  356. bool "SMDK2412"
  357. select MACH_SMDK2413
  358. help
  359. Say Y here if you are using an SMDK2412
  360. Note, this shares support with SMDK2413, so will automatically
  361. select MACH_SMDK2413.
  362. config MACH_SMDK2413
  363. bool "SMDK2413"
  364. select MACH_S3C2413
  365. select S3C24XX_SMDK
  366. select S3C_DEV_NAND
  367. select S3C_DEV_USB_HOST
  368. help
  369. Say Y here if you are using an SMDK2413
  370. config MACH_VSTMS
  371. bool "VMSTMS"
  372. select S3C_DEV_NAND
  373. select S3C_DEV_USB_HOST
  374. help
  375. Say Y here if you are using an VSTMS board
  376. endif # CPU_S3C2412
  377. if CPU_S3C2416
  378. config S3C2416_PM
  379. bool
  380. select S3C2412_PM_SLEEP
  381. help
  382. Internal config node to apply S3C2416 power management
  383. config S3C2416_SETUP_SDHCI
  384. bool
  385. select S3C2416_SETUP_SDHCI_GPIO
  386. help
  387. Internal helper functions for S3C2416 based SDHCI systems
  388. config S3C2416_SETUP_SDHCI_GPIO
  389. bool
  390. help
  391. Common setup code for SDHCI gpio.
  392. comment "S3C2416 Boards"
  393. config MACH_SMDK2416
  394. bool "SMDK2416"
  395. select S3C2416_SETUP_SDHCI
  396. select S3C24XX_SMDK
  397. select S3C_DEV_FB
  398. select S3C_DEV_HSMMC
  399. select S3C_DEV_HSMMC1
  400. select S3C_DEV_NAND
  401. select S3C_DEV_USB_HOST
  402. help
  403. Say Y here if you are using an SMDK2416
  404. config MACH_S3C2416_DT
  405. bool "Samsung S3C2416 machine using devicetree"
  406. select CLKSRC_OF
  407. select USE_OF
  408. select PINCTRL
  409. select PINCTRL_S3C24XX
  410. help
  411. Machine support for Samsung S3C2416 machines with device tree enabled.
  412. Select this if a fdt blob is available for the S3C2416 SoC based board.
  413. Note: This is under development and not all peripherals can be supported
  414. with this machine file.
  415. endif # CPU_S3C2416
  416. if CPU_S3C2440
  417. config S3C2440_DMA
  418. bool
  419. help
  420. Support for S3C2440 specific DMA code5A
  421. config S3C2440_XTAL_12000000
  422. bool
  423. help
  424. Indicate that the build needs to support 12MHz system
  425. crystal.
  426. config S3C2440_XTAL_16934400
  427. bool
  428. help
  429. Indicate that the build needs to support 16.9344MHz system
  430. crystal.
  431. config S3C2440_PLL_12000000
  432. bool
  433. depends on ARM_S3C2440_CPUFREQ && S3C2440_XTAL_12000000
  434. default y if S3C24XX_PLL
  435. help
  436. PLL tables for S3C2440 or S3C2442 CPUs with 12MHz crystals.
  437. config S3C2440_PLL_16934400
  438. bool
  439. depends on ARM_S3C2440_CPUFREQ && S3C2440_XTAL_16934400
  440. default y if S3C24XX_PLL
  441. help
  442. PLL tables for S3C2440 or S3C2442 CPUs with 16.934MHz crystals.
  443. comment "S3C2440 Boards"
  444. #
  445. # The "S3C2440 Boards" list is ordered alphabetically by option text.
  446. # (without ARCH_ or MACH_)
  447. #
  448. config MACH_ANUBIS
  449. bool "Simtec Electronics ANUBIS"
  450. select HAVE_PATA_PLATFORM
  451. select S3C2440_XTAL_12000000
  452. select S3C24XX_DCLK
  453. select S3C24XX_GPIO_EXTRA64
  454. select S3C24XX_SIMTEC_PM if PM
  455. select S3C_DEV_USB_HOST
  456. help
  457. Say Y here if you are using the Simtec Electronics ANUBIS
  458. development system
  459. config MACH_AT2440EVB
  460. bool "Avantech AT2440EVB development board"
  461. select S3C_DEV_NAND
  462. select S3C_DEV_USB_HOST
  463. help
  464. Say Y here if you are using the AT2440EVB development board
  465. config MACH_MINI2440
  466. bool "MINI2440 development board"
  467. select EEPROM_AT24
  468. select LEDS_CLASS
  469. select LEDS_TRIGGERS
  470. select LEDS_TRIGGER_BACKLIGHT
  471. select NEW_LEDS
  472. select S3C_DEV_NAND
  473. select S3C_DEV_USB_HOST
  474. select S3C_SETUP_CAMIF
  475. help
  476. Say Y here to select support for the MINI2440. Is a 10cm x 10cm board
  477. available via various sources. It can come with a 3.5" or 7" touch LCD.
  478. config MACH_NEXCODER_2440
  479. bool "NexVision NEXCODER 2440 Light Board"
  480. select S3C2440_XTAL_12000000
  481. select S3C_DEV_NAND
  482. select S3C_DEV_USB_HOST
  483. help
  484. Say Y here if you are using the Nex Vision NEXCODER 2440 Light Board
  485. config MACH_OSIRIS
  486. bool "Simtec IM2440D20 (OSIRIS) module"
  487. select S3C2410_IOTIMING if ARM_S3C2440_CPUFREQ
  488. select S3C2440_XTAL_12000000
  489. select S3C24XX_DCLK
  490. select S3C24XX_GPIO_EXTRA128
  491. select S3C24XX_SIMTEC_PM if PM
  492. select S3C_DEV_NAND
  493. select S3C_DEV_USB_HOST
  494. help
  495. Say Y here if you are using the Simtec IM2440D20 module, also
  496. known as the Osiris.
  497. config MACH_OSIRIS_DVS
  498. tristate "Simtec IM2440D20 (OSIRIS) Dynamic Voltage Scaling driver"
  499. depends on MACH_OSIRIS
  500. select TPS65010
  501. help
  502. Say Y/M here if you want to have dynamic voltage scaling support
  503. on the Simtec IM2440D20 (OSIRIS) module via the TPS65011.
  504. The DVS driver alters the voltage supplied to the ARM core
  505. depending on the frequency it is running at. The driver itself
  506. does not do any of the frequency alteration, which is left up
  507. to the cpufreq driver.
  508. config MACH_RX3715
  509. bool "HP iPAQ rx3715"
  510. select PM_H1940 if PM
  511. select S3C2440_XTAL_16934400
  512. select S3C_DEV_NAND
  513. help
  514. Say Y here if you are using the HP iPAQ rx3715.
  515. config ARCH_S3C2440
  516. bool "SMDK2440"
  517. select S3C2440_XTAL_16934400
  518. select S3C24XX_SMDK
  519. select S3C_DEV_NAND
  520. select S3C_DEV_USB_HOST
  521. help
  522. Say Y here if you are using the SMDK2440.
  523. config SMDK2440_CPU2440
  524. bool "SMDK2440 with S3C2440 CPU module"
  525. default y if ARCH_S3C2440
  526. select S3C2440_XTAL_16934400
  527. endif # CPU_S3C2440
  528. if CPU_S3C2442
  529. comment "S3C2442 Boards"
  530. #
  531. # The "S3C2442 Boards" list is ordered alphabetically by option text.
  532. # (without ARCH_ or MACH_)
  533. #
  534. config MACH_NEO1973_GTA02
  535. bool "Openmoko GTA02 / Freerunner phone"
  536. select I2C
  537. select MFD_PCF50633
  538. select PCF50633_GPIO
  539. select POWER_SUPPLY
  540. select S3C24XX_PWM
  541. select S3C_DEV_USB_HOST
  542. help
  543. Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone
  544. config MACH_RX1950
  545. bool "HP iPAQ rx1950"
  546. select I2C
  547. select PM_H1940 if PM
  548. select S3C2410_IOTIMING if ARM_S3C2440_CPUFREQ
  549. select S3C2440_XTAL_16934400
  550. select S3C24XX_DCLK
  551. select S3C24XX_PWM
  552. select S3C_DEV_NAND
  553. help
  554. Say Y here if you're using HP iPAQ rx1950
  555. endif # CPU_S3C2442
  556. if CPU_S3C2443 || CPU_S3C2416
  557. config S3C2443_COMMON
  558. bool
  559. help
  560. Common code for the S3C2443 and similar processors, which includes
  561. the S3C2416 and S3C2450.
  562. config S3C2443_DMA
  563. bool
  564. help
  565. Internal config node for S3C2443 DMA support
  566. config S3C2443_SETUP_SPI
  567. bool
  568. help
  569. Common setup code for SPI GPIO configurations
  570. endif # CPU_S3C2443 || CPU_S3C2416
  571. if CPU_S3C2443
  572. comment "S3C2443 Boards"
  573. config MACH_SMDK2443
  574. bool "SMDK2443"
  575. select S3C24XX_SMDK
  576. select S3C_DEV_HSMMC1
  577. help
  578. Say Y here if you are using an SMDK2443
  579. endif # CPU_S3C2443
  580. endmenu # SAMSUNG S3C24XX SoCs Support
  581. endif # ARCH_S3C24XX