Kconfig 15 KB

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