foxg20.patch 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520
  1. diff -Nur linux-2.6.37.orig/arch/arm/Kconfig linux-2.6.37/arch/arm/Kconfig
  2. --- linux-2.6.37.orig/arch/arm/Kconfig 2011-01-05 01:50:19.000000000 +0100
  3. +++ linux-2.6.37/arch/arm/Kconfig 2011-01-19 22:07:18.000000000 +0100
  4. @@ -16,6 +16,8 @@
  5. select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
  6. select HAVE_GENERIC_DMA_COHERENT
  7. select HAVE_KERNEL_GZIP
  8. + select HAVE_KERNEL_BZIP2
  9. + select HAVE_KERNEL_LZMA
  10. select HAVE_KERNEL_LZO
  11. select HAVE_KERNEL_LZMA
  12. select HAVE_IRQ_WORK
  13. diff -Nur linux-2.6.37.orig/arch/arm/include/asm/setup.h linux-2.6.37/arch/arm/include/asm/setup.h
  14. --- linux-2.6.37.orig/arch/arm/include/asm/setup.h 2011-01-05 01:50:19.000000000 +0100
  15. +++ linux-2.6.37/arch/arm/include/asm/setup.h 2011-01-19 22:07:18.000000000 +0100
  16. @@ -18,6 +18,8 @@
  17. #define COMMAND_LINE_SIZE 1024
  18. +const char *get_system_type(void);
  19. +
  20. /* The list ends with an ATAG_NONE node. */
  21. #define ATAG_NONE 0x00000000
  22. diff -Nur linux-2.6.37.orig/arch/arm/kernel/setup.c linux-2.6.37/arch/arm/kernel/setup.c
  23. --- linux-2.6.37.orig/arch/arm/kernel/setup.c 2011-01-05 01:50:19.000000000 +0100
  24. +++ linux-2.6.37/arch/arm/kernel/setup.c 2011-01-19 22:07:18.000000000 +0100
  25. @@ -935,8 +935,12 @@
  26. static int c_show(struct seq_file *m, void *v)
  27. {
  28. + unsigned long n = (unsigned long) v - 1;
  29. int i;
  30. + if (n == 0)
  31. + seq_printf(m, "system type\t\t: %s\n", get_system_type());
  32. +
  33. seq_printf(m, "Processor\t: %s rev %d (%s)\n",
  34. cpu_name, read_cpuid_id() & 15, elf_platform);
  35. diff -Nur linux-2.6.37.orig/arch/arm/mach-at91/Kconfig linux-2.6.37/arch/arm/mach-at91/Kconfig
  36. --- linux-2.6.37.orig/arch/arm/mach-at91/Kconfig 2011-01-05 01:50:19.000000000 +0100
  37. +++ linux-2.6.37/arch/arm/mach-at91/Kconfig 2011-01-19 22:08:47.000000000 +0100
  38. @@ -347,6 +347,15 @@
  39. Select this if you are using Atmel's AT91SAM9G20-EK Evaluation Kit
  40. that embeds only one SD/MMC slot.
  41. +config MACH_FOXG20
  42. + bool "Acme Systems FOX G20"
  43. + select HAVE_AT91_DATAFLASH_CARD
  44. + select HAVE_NAND_ATMEL_BUSWIDTH_16
  45. + depends on ARCH_AT91SAM9G20
  46. + help
  47. + Select this if you are using Acme Systems
  48. + FOX Board G20 <http://netus.acmesystems.it>
  49. +
  50. config MACH_AT91SAM9G20EK_2MMC
  51. depends on MACH_AT91SAM9G20EK
  52. bool "Atmel AT91SAM9G20-EK Evaluation Kit with 2 SD/MMC Slots"
  53. diff -Nur linux-2.6.37.orig/arch/arm/mach-at91/Makefile linux-2.6.37/arch/arm/mach-at91/Makefile
  54. --- linux-2.6.37.orig/arch/arm/mach-at91/Makefile 2011-01-05 01:50:19.000000000 +0100
  55. +++ linux-2.6.37/arch/arm/mach-at91/Makefile 2011-01-19 22:07:18.000000000 +0100
  56. @@ -73,6 +73,9 @@
  57. # AT91SAM9G45 board-specific support
  58. obj-$(CONFIG_MACH_AT91SAM9M10G45EK) += board-sam9m10g45ek.o
  59. +# FOXG20 board-specific support
  60. +obj-$(CONFIG_MACH_FOXG20) += board-foxg20.o
  61. +
  62. # AT91CAP9 board-specific support
  63. obj-$(CONFIG_MACH_AT91CAP9ADK) += board-cap9adk.o
  64. diff -Nur linux-2.6.37.orig/arch/arm/mach-at91/at91sam9260_devices.c linux-2.6.37/arch/arm/mach-at91/at91sam9260_devices.c
  65. --- linux-2.6.37.orig/arch/arm/mach-at91/at91sam9260_devices.c 2011-01-05 01:50:19.000000000 +0100
  66. +++ linux-2.6.37/arch/arm/mach-at91/at91sam9260_devices.c 2011-01-19 22:07:18.000000000 +0100
  67. @@ -454,7 +454,15 @@
  68. .sda_is_open_drain = 1,
  69. .scl_pin = AT91_PIN_PA24,
  70. .scl_is_open_drain = 1,
  71. +#if defined(CONFIG_MACH_FOXG20)
  72. + /* Some I2C devices are limited to 100 kHz and i2c-gpio.h
  73. + * says "frequency is (500 / udelay) kHz" so 5 is best (and is
  74. + * used in i2c-gpio.c)
  75. + */
  76. + .udelay = 5, /* ~100 kHz */
  77. +#else
  78. .udelay = 2, /* ~100 kHz */
  79. +#endif
  80. };
  81. static struct platform_device at91sam9260_twi_device = {
  82. diff -Nur linux-2.6.37.orig/arch/arm/mach-at91/board-foxg20.c linux-2.6.37/arch/arm/mach-at91/board-foxg20.c
  83. --- linux-2.6.37.orig/arch/arm/mach-at91/board-foxg20.c 1970-01-01 01:00:00.000000000 +0100
  84. +++ linux-2.6.37/arch/arm/mach-at91/board-foxg20.c 2011-01-19 22:30:43.000000000 +0100
  85. @@ -0,0 +1,374 @@
  86. +/*
  87. + * Copyright (C) 2005 SAN People
  88. + * Copyright (C) 2008 Atmel
  89. + * Copyright (C) 2010 Lee McLoughlin - lee@lmmrtech.com
  90. + *
  91. + * This program is free software; you can redistribute it and/or modify
  92. + * it under the terms of the GNU General Public License as published by
  93. + * the Free Software Foundation; either version 2 of the License, or
  94. + * (at your option) any later version.
  95. + *
  96. + * This program is distributed in the hope that it will be useful,
  97. + * but WITHOUT ANY WARRANTY; without even the implied warranty of
  98. + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  99. + * GNU General Public License for more details.
  100. + *
  101. + * You should have received a copy of the GNU General Public License
  102. + * along with this program; if not, write to the Free Software
  103. + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  104. + */
  105. +
  106. +#include <linux/types.h>
  107. +#include <linux/init.h>
  108. +#include <linux/mm.h>
  109. +#include <linux/module.h>
  110. +#include <linux/platform_device.h>
  111. +#include <linux/spi/spi.h>
  112. +#include <linux/spi/at73c213.h>
  113. +#include <linux/gpio_keys.h>
  114. +#include <linux/input.h>
  115. +#include <linux/clk.h>
  116. +#include <linux/w1-gpio.h>
  117. +
  118. +#include <mach/hardware.h>
  119. +#include <asm/setup.h>
  120. +#include <asm/mach-types.h>
  121. +#include <asm/irq.h>
  122. +
  123. +#include <asm/mach/arch.h>
  124. +#include <asm/mach/map.h>
  125. +#include <asm/mach/irq.h>
  126. +
  127. +#include <mach/board.h>
  128. +#include <mach/gpio.h>
  129. +#include <mach/at91sam9_smc.h>
  130. +
  131. +#include "sam9_smc.h"
  132. +#include "generic.h"
  133. +
  134. +/*
  135. + * The FOX hardware comes as the "Netus" board with just the cpu, ram,
  136. + * dataflash and two header connectors. This is plugged into the Fox board
  137. + * which provides the ethernet, usb, rtc, leds, switch, ...
  138. + * Other version of the Fox board are planned which could contain
  139. + * both NAND and sound (WM8731).
  140. + *
  141. + * By default USART4 and USART5 are not enabled (freeing up those pins
  142. + * for general use)
  143. + *
  144. + * Note: Enabling the NAND without a NAND device present doesn't cause
  145. + * any issues as on boot the probe will fail.
  146. + */
  147. +/* #define FOXG20_NAND */
  148. +/* #define FOXG20_WM8731 */
  149. +/* #define FOX_USART4 */
  150. +/* #define FOX_USART5 */
  151. +
  152. +const char *get_system_type(void)
  153. +{
  154. + return "FoxBoard FOXG20";
  155. +}
  156. +
  157. +static void __init foxg20_map_io(void)
  158. +{
  159. + /* Initialize processor: 18.432 MHz crystal */
  160. + at91sam9260_initialize(18432000);
  161. +
  162. + /* DBGU on ttyS0. (Rx & Tx only) */
  163. + at91_register_uart(0, 0, 0);
  164. +
  165. + /* USART0 on ttyS1. (Rx, Tx, CTS, RTS, DTR, DSR, DCD, RI) */
  166. + at91_register_uart(AT91SAM9260_ID_US0, 1, ATMEL_UART_CTS | ATMEL_UART_RTS
  167. + | ATMEL_UART_DTR | ATMEL_UART_DSR | ATMEL_UART_DCD
  168. + | ATMEL_UART_RI);
  169. +
  170. + /* USART1 on ttyS2. (Rx, Tx, RTS, CTS) */
  171. + at91_register_uart(AT91SAM9260_ID_US1, 2, ATMEL_UART_CTS | ATMEL_UART_RTS);
  172. +
  173. + /* USART2 on ttyS3. (Rx & Tx only) */
  174. + at91_register_uart(AT91SAM9260_ID_US2, 3, 0);
  175. +
  176. + /* USART3 on ttyS4. (Rx, Tx, RTS, CTS) */
  177. + at91_register_uart(AT91SAM9260_ID_US3, 4, ATMEL_UART_CTS | ATMEL_UART_RTS);
  178. +
  179. +#if defined(FOX_USART4)
  180. + /* USART4 on ttyS5. (Rx & Tx only) */
  181. + at91_register_uart(AT91SAM9260_ID_US4, 5, 0);
  182. +#endif
  183. +
  184. +#if defined(FOX_USART5)
  185. + /* USART5 on ttyS6. (Rx & Tx only) */
  186. + at91_register_uart(AT91SAM9260_ID_US5, 6, 0);
  187. +#endif
  188. +
  189. + /* set serial console to ttyS0 (ie, DBGU) */
  190. + at91_set_serial_console(0);
  191. +}
  192. +
  193. +static void __init foxg20_init_irq(void)
  194. +{
  195. + at91sam9260_init_interrupts(NULL);
  196. +}
  197. +
  198. +
  199. +/*
  200. + * USB Host port
  201. + */
  202. +static struct at91_usbh_data __initdata foxg20_usbh_data = {
  203. + .ports = 2,
  204. +};
  205. +
  206. +/*
  207. + * USB Device port
  208. + */
  209. +static struct at91_udc_data __initdata foxg20_udc_data = {
  210. + .vbus_pin = AT91_PIN_PC6,
  211. + .pullup_pin = 0, /* pull-up driven by UDC */
  212. +};
  213. +
  214. +
  215. +/*
  216. + * SPI devices.
  217. + */
  218. +static struct spi_board_info foxg20_spi_devices[] = {
  219. +#if !defined(CONFIG_MMC_AT91)
  220. + {
  221. + .modalias = "mtd_dataflash",
  222. + .chip_select = 1,
  223. + .max_speed_hz = 15 * 1000 * 1000,
  224. + .bus_num = 0,
  225. + },
  226. +#endif
  227. +};
  228. +
  229. +
  230. +/*
  231. + * MACB Ethernet device
  232. + */
  233. +static struct at91_eth_data __initdata foxg20_macb_data = {
  234. + .phy_irq_pin = AT91_PIN_PA7,
  235. + .is_rmii = 1,
  236. +};
  237. +
  238. +
  239. +#ifdef FOXG20_NAND
  240. +/* The Fox doesn't have NAND memory */
  241. +/*
  242. + * NAND flash
  243. + */
  244. +static struct mtd_partition __initdata foxg20_nand_partition[] = {
  245. + {
  246. + .name = "Bootstrap",
  247. + .offset = 0,
  248. + .size = 4 * SZ_1M,
  249. + },
  250. + {
  251. + .name = "Partition 1",
  252. + .offset = MTDPART_OFS_NXTBLK,
  253. + .size = 60 * SZ_1M,
  254. + },
  255. + {
  256. + .name = "Partition 2",
  257. + .offset = MTDPART_OFS_NXTBLK,
  258. + .size = MTDPART_SIZ_FULL,
  259. + },
  260. +};
  261. +
  262. +static struct mtd_partition * __init nand_partitions(int size, int *num_partitions)
  263. +{
  264. + *num_partitions = ARRAY_SIZE(foxg20_nand_partition);
  265. + return foxg20_nand_partition;
  266. +}
  267. +
  268. +/* det_pin is not connected */
  269. +static struct atmel_nand_data __initdata foxg20_nand_data = {
  270. + .ale = 21,
  271. + .cle = 22,
  272. + .rdy_pin = AT91_PIN_PC13,
  273. + .enable_pin = AT91_PIN_PC14,
  274. + .partition_info = nand_partitions,
  275. +#if defined(CONFIG_MTD_NAND_ATMEL_BUSWIDTH_16)
  276. + .bus_width_16 = 1,
  277. +#else
  278. + .bus_width_16 = 0,
  279. +#endif
  280. +};
  281. +
  282. +static struct sam9_smc_config __initdata foxg20_nand_smc_config = {
  283. + .ncs_read_setup = 0,
  284. + .nrd_setup = 2,
  285. + .ncs_write_setup = 0,
  286. + .nwe_setup = 2,
  287. +
  288. + .ncs_read_pulse = 4,
  289. + .nrd_pulse = 4,
  290. + .ncs_write_pulse = 4,
  291. + .nwe_pulse = 4,
  292. +
  293. + .read_cycle = 7,
  294. + .write_cycle = 7,
  295. +
  296. + .mode = AT91_SMC_READMODE | AT91_SMC_WRITEMODE | AT91_SMC_EXNWMODE_DISABLE,
  297. + .tdf_cycles = 3,
  298. +};
  299. +
  300. +static void __init foxg20_add_device_nand(void)
  301. +{
  302. + /* setup bus-width (8 or 16) */
  303. + if (foxg20_nand_data.bus_width_16)
  304. + foxg20_nand_smc_config.mode |= AT91_SMC_DBW_16;
  305. + else
  306. + foxg20_nand_smc_config.mode |= AT91_SMC_DBW_8;
  307. +
  308. + /* configure chip-select 3 (NAND) */
  309. + sam9_smc_configure(3, &foxg20_nand_smc_config);
  310. +
  311. + at91_add_device_nand(&foxg20_nand_data);
  312. +}
  313. +#endif
  314. +
  315. +
  316. +/*
  317. + * MCI (SD/MMC)
  318. + * det_pin, wp_pin and vcc_pin are not connected
  319. + */
  320. +static struct at91_mmc_data __initdata foxg20_mmc_data = {
  321. + .slot_b = 1,
  322. + .wire4 = 1,
  323. +};
  324. +
  325. +
  326. +/*
  327. + * LEDs
  328. + */
  329. +static struct gpio_led foxg20_leds[] = {
  330. + { /* user led, red */
  331. + .name = "user_led",
  332. + .gpio = AT91_PIN_PC7,
  333. + .active_low = 0,
  334. + .default_trigger = "heartbeat",
  335. + },
  336. +};
  337. +
  338. +
  339. +/*
  340. + * GPIO Buttons
  341. + */
  342. +#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
  343. +static struct gpio_keys_button foxg20_buttons[] = {
  344. + {
  345. + .gpio = AT91_PIN_PC4,
  346. + .code = BTN_1,
  347. + .desc = "Button 1",
  348. + .active_low = 1,
  349. + .wakeup = 1,
  350. + },
  351. +};
  352. +
  353. +static struct gpio_keys_platform_data foxg20_button_data = {
  354. + .buttons = foxg20_buttons,
  355. + .nbuttons = ARRAY_SIZE(foxg20_buttons),
  356. +};
  357. +
  358. +static struct platform_device foxg20_button_device = {
  359. + .name = "gpio-keys",
  360. + .id = -1,
  361. + .num_resources = 0,
  362. + .dev = {
  363. + .platform_data = &foxg20_button_data,
  364. + }
  365. +};
  366. +
  367. +static void __init foxg20_add_device_buttons(void)
  368. +{
  369. + at91_set_gpio_input(AT91_PIN_PC4, 1); /* btn1 */
  370. + at91_set_deglitch(AT91_PIN_PC4, 1);
  371. +
  372. + platform_device_register(&foxg20_button_device);
  373. +}
  374. +#else
  375. +static void __init foxg20_add_device_buttons(void) {}
  376. +#endif
  377. +
  378. +
  379. +#if !defined(FOXG20_WM8731)
  380. +#if defined(CONFIG_W1_MASTER_GPIO) || defined(CONFIG_W1_MASTER_GPIO_MODULE)
  381. +static struct w1_gpio_platform_data w1_gpio_pdata = {
  382. + /* If you choose to use a pin other than PB16 it needs to be 3.3V */
  383. + .pin = AT91_PIN_PB16,
  384. + .is_open_drain = 1,
  385. +};
  386. +
  387. +static struct platform_device w1_device = {
  388. + .name = "w1-gpio",
  389. + .id = -1,
  390. + .dev.platform_data = &w1_gpio_pdata,
  391. +};
  392. +
  393. +static void __init at91_add_device_w1(void)
  394. +{
  395. + at91_set_GPIO_periph(w1_gpio_pdata.pin, 1);
  396. + at91_set_multi_drive(w1_gpio_pdata.pin, 1);
  397. + platform_device_register(&w1_device);
  398. +}
  399. +
  400. +#endif
  401. +#endif
  402. +
  403. +
  404. +static struct i2c_board_info __initdata foxg20_i2c_devices[] = {
  405. + {
  406. + I2C_BOARD_INFO("24c512", 0x50),
  407. +#ifdef FOXG20_WM8731
  408. + I2C_BOARD_INFO("wm8731", 0x1b),
  409. +#endif
  410. + },
  411. +};
  412. +
  413. +
  414. +static void __init foxg20_board_init(void)
  415. +{
  416. + /* Serial */
  417. + at91_add_device_serial();
  418. + /* USB Host */
  419. + at91_add_device_usbh(&foxg20_usbh_data);
  420. + /* USB Device */
  421. + at91_add_device_udc(&foxg20_udc_data);
  422. + /* SPI */
  423. + at91_add_device_spi(foxg20_spi_devices, ARRAY_SIZE(foxg20_spi_devices));
  424. +#ifdef FOXG20_NAND
  425. + /* The Fox doesn't have NAND memory */
  426. + /* NAND */
  427. + foxg20_add_device_nand();
  428. +#endif
  429. + /* Ethernet */
  430. + at91_add_device_eth(&foxg20_macb_data);
  431. + /* MMC */
  432. + at91_add_device_mmc(0, &foxg20_mmc_data);
  433. + /* I2C */
  434. + at91_add_device_i2c(foxg20_i2c_devices, ARRAY_SIZE(foxg20_i2c_devices));
  435. + /* LEDs */
  436. + at91_gpio_leds(foxg20_leds, ARRAY_SIZE(foxg20_leds));
  437. + /* Push Buttons */
  438. + foxg20_add_device_buttons();
  439. +#ifdef FOXG20_WM8731
  440. + /* The Fox doesn't have this sound chip */
  441. + /* PCK0 provides MCLK to the WM8731 */
  442. + at91_set_B_periph(AT91_PIN_PC1, 0);
  443. + /* SSC (for WM8731) */
  444. + at91_add_device_ssc(AT91SAM9260_ID_SSC, ATMEL_SSC_TX);
  445. +#else
  446. +#if defined(CONFIG_W1_MASTER_GPIO) || defined(CONFIG_W1_MASTER_GPIO_MODULE)
  447. + at91_add_device_w1();
  448. +#endif
  449. +#endif
  450. +}
  451. +
  452. +MACHINE_START(AT91SAM9G20EK, "Acme Systems FOXG20")
  453. + /* Maintainer: Lee McLoughlin */
  454. + .boot_params = AT91_SDRAM_BASE + 0x100,
  455. + .timer = &at91sam926x_timer,
  456. + .map_io = foxg20_map_io,
  457. + .init_irq = foxg20_init_irq,
  458. + .init_machine = foxg20_board_init,
  459. +MACHINE_END
  460. diff -Nur linux-2.6.37.orig/drivers/mmc/host/Kconfig linux-2.6.37/drivers/mmc/host/Kconfig
  461. --- linux-2.6.37.orig/drivers/mmc/host/Kconfig 2011-01-05 01:50:19.000000000 +0100
  462. +++ linux-2.6.37/drivers/mmc/host/Kconfig 2011-01-19 22:07:18.000000000 +0100
  463. @@ -230,12 +230,12 @@
  464. If unsure, say N.
  465. -choice
  466. - prompt "Atmel SD/MMC Driver"
  467. - depends on AVR32 || ARCH_AT91
  468. - default MMC_ATMELMCI if AVR32
  469. - help
  470. - Choose which driver to use for the Atmel MCI Silicon
  471. +#choice
  472. +# prompt "Atmel SD/MMC Driver"
  473. +# depends on AVR32 || ARCH_AT91
  474. +# default MMC_ATMELMCI if AVR32
  475. +# help
  476. +# Choose which driver to use for the Atmel MCI Silicon
  477. config MMC_AT91
  478. tristate "AT91 SD/MMC Card Interface support"
  479. @@ -245,17 +245,17 @@
  480. If unsure, say N.
  481. -config MMC_ATMELMCI
  482. - tristate "Atmel Multimedia Card Interface support"
  483. - depends on AVR32 || ARCH_AT91
  484. - help
  485. - This selects the Atmel Multimedia Card Interface driver. If
  486. - you have an AT32 (AVR32) or AT91 platform with a Multimedia
  487. - Card slot, say Y or M here.
  488. -
  489. - If unsure, say N.
  490. -
  491. -endchoice
  492. +#config MMC_ATMELMCI
  493. +# tristate "Atmel Multimedia Card Interface support"
  494. +# depends on AVR32 || ARCH_AT91
  495. +# help
  496. +# This selects the Atmel Multimedia Card Interface driver. If
  497. +# you have an AT32 (AVR32) or AT91 platform with a Multimedia
  498. +# Card slot, say Y or M here.
  499. +#
  500. +# If unsure, say N.
  501. +#
  502. +#endchoice
  503. config MMC_ATMELMCI_DMA
  504. bool "Atmel MCI DMA support (EXPERIMENTAL)"