diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 15:36:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 15:37:15 -0500 |
commit | 7c51d57e9d7fbce89f79c41dc8da383101dbe9c6 (patch) | |
tree | 9f45a5ac5ce627b4c6138595b23ae7f02e1ee7fb /arch/arm/mach-pxa | |
parent | a3a798c88a14b35e5d4ca30716dbc9eb9a1ddfe2 (diff) | |
parent | 85795dac740e63e81aeec8d49aada54ab07656b5 (diff) |
Merge git://git.infradead.org/mtd-2.6
* git://git.infradead.org/mtd-2.6: (67 commits)
[MTD] [MAPS] Fix printk format warning in nettel.c
[MTD] [NAND] add cmdline parsing (mtdparts=) support to cafe_nand
[MTD] CFI: remove major/minor version check for command set 0x0002
[MTD] [NAND] ndfc driver
[MTD] [TESTS] Fix some size_t printk format warnings
[MTD] LPDDR Makefile and KConfig
[MTD] LPDDR extended physmap driver to support LPDDR flash
[MTD] LPDDR added new pfow_base parameter
[MTD] LPDDR Command set driver
[MTD] LPDDR PFOW definition
[MTD] LPDDR QINFO records definitions
[MTD] LPDDR qinfo probing.
[MTD] [NAND] pxa3xx: convert from ns to clock ticks more accurately
[MTD] [NAND] pxa3xx: fix non-page-aligned reads
[MTD] [NAND] fix nandsim sched.h references
[MTD] [NAND] alauda: use USB API functions rather than constants
[MTD] struct device - replace bus_id with dev_name(), dev_set_name()
[MTD] fix m25p80 64-bit divisions
[MTD] fix dataflash 64-bit divisions
[MTD] [NAND] Set the fsl elbc ECCM according the settings in bootloader.
...
Fixed up trivial debug conflicts in drivers/mtd/devices/{m25p80.c,mtd_dataflash.c}
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/corgi.c | 54 | ||||
-rw-r--r-- | arch/arm/mach-pxa/poodle.c | 51 | ||||
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 77 |
3 files changed, 182 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index c5e28a46b292..a8d91b6c136b 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/spi/spi.h> | 27 | #include <linux/spi/spi.h> |
28 | #include <linux/spi/ads7846.h> | 28 | #include <linux/spi/ads7846.h> |
29 | #include <linux/spi/corgi_lcd.h> | 29 | #include <linux/spi/corgi_lcd.h> |
30 | #include <linux/mtd/sharpsl.h> | ||
30 | #include <video/w100fb.h> | 31 | #include <video/w100fb.h> |
31 | 32 | ||
32 | #include <asm/setup.h> | 33 | #include <asm/setup.h> |
@@ -542,6 +543,55 @@ err_free_1: | |||
542 | static inline void corgi_init_spi(void) {} | 543 | static inline void corgi_init_spi(void) {} |
543 | #endif | 544 | #endif |
544 | 545 | ||
546 | static struct mtd_partition sharpsl_nand_partitions[] = { | ||
547 | { | ||
548 | .name = "System Area", | ||
549 | .offset = 0, | ||
550 | .size = 7 * 1024 * 1024, | ||
551 | }, | ||
552 | { | ||
553 | .name = "Root Filesystem", | ||
554 | .offset = 7 * 1024 * 1024, | ||
555 | .size = 25 * 1024 * 1024, | ||
556 | }, | ||
557 | { | ||
558 | .name = "Home Filesystem", | ||
559 | .offset = MTDPART_OFS_APPEND, | ||
560 | .size = MTDPART_SIZ_FULL, | ||
561 | }, | ||
562 | }; | ||
563 | |||
564 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; | ||
565 | |||
566 | static struct nand_bbt_descr sharpsl_bbt = { | ||
567 | .options = 0, | ||
568 | .offs = 4, | ||
569 | .len = 2, | ||
570 | .pattern = scan_ff_pattern | ||
571 | }; | ||
572 | |||
573 | static struct sharpsl_nand_platform_data sharpsl_nand_platform_data = { | ||
574 | .badblock_pattern = &sharpsl_bbt, | ||
575 | .partitions = sharpsl_nand_partitions, | ||
576 | .nr_partitions = ARRAY_SIZE(sharpsl_nand_partitions), | ||
577 | }; | ||
578 | |||
579 | static struct resource sharpsl_nand_resources[] = { | ||
580 | { | ||
581 | .start = 0x0C000000, | ||
582 | .end = 0x0C000FFF, | ||
583 | .flags = IORESOURCE_MEM, | ||
584 | }, | ||
585 | }; | ||
586 | |||
587 | static struct platform_device sharpsl_nand_device = { | ||
588 | .name = "sharpsl-nand", | ||
589 | .id = -1, | ||
590 | .resource = sharpsl_nand_resources, | ||
591 | .num_resources = ARRAY_SIZE(sharpsl_nand_resources), | ||
592 | .dev.platform_data = &sharpsl_nand_platform_data, | ||
593 | }; | ||
594 | |||
545 | static struct mtd_partition sharpsl_rom_parts[] = { | 595 | static struct mtd_partition sharpsl_rom_parts[] = { |
546 | { | 596 | { |
547 | .name ="Boot PROM Filesystem", | 597 | .name ="Boot PROM Filesystem", |
@@ -577,6 +627,7 @@ static struct platform_device *devices[] __initdata = { | |||
577 | &corgifb_device, | 627 | &corgifb_device, |
578 | &corgikbd_device, | 628 | &corgikbd_device, |
579 | &corgiled_device, | 629 | &corgiled_device, |
630 | &sharpsl_nand_device, | ||
580 | &sharpsl_rom_device, | 631 | &sharpsl_rom_device, |
581 | }; | 632 | }; |
582 | 633 | ||
@@ -617,6 +668,9 @@ static void __init corgi_init(void) | |||
617 | 668 | ||
618 | platform_scoop_config = &corgi_pcmcia_config; | 669 | platform_scoop_config = &corgi_pcmcia_config; |
619 | 670 | ||
671 | if (machine_is_husky()) | ||
672 | sharpsl_nand_partitions[1].size = 53 * 1024 * 1024; | ||
673 | |||
620 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 674 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
621 | } | 675 | } |
622 | 676 | ||
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index ae88855bf974..f9093beba752 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <linux/gpio.h> | 24 | #include <linux/gpio.h> |
25 | #include <linux/spi/spi.h> | 25 | #include <linux/spi/spi.h> |
26 | #include <linux/spi/ads7846.h> | 26 | #include <linux/spi/ads7846.h> |
27 | #include <linux/mtd/sharpsl.h> | ||
27 | 28 | ||
28 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
29 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
@@ -414,6 +415,55 @@ static struct pxafb_mach_info poodle_fb_info = { | |||
414 | .lcd_conn = LCD_COLOR_TFT_16BPP, | 415 | .lcd_conn = LCD_COLOR_TFT_16BPP, |
415 | }; | 416 | }; |
416 | 417 | ||
418 | static struct mtd_partition sharpsl_nand_partitions[] = { | ||
419 | { | ||
420 | .name = "System Area", | ||
421 | .offset = 0, | ||
422 | .size = 7 * 1024 * 1024, | ||
423 | }, | ||
424 | { | ||
425 | .name = "Root Filesystem", | ||
426 | .offset = 7 * 1024 * 1024, | ||
427 | .size = 22 * 1024 * 1024, | ||
428 | }, | ||
429 | { | ||
430 | .name = "Home Filesystem", | ||
431 | .offset = MTDPART_OFS_APPEND, | ||
432 | .size = MTDPART_SIZ_FULL, | ||
433 | }, | ||
434 | }; | ||
435 | |||
436 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; | ||
437 | |||
438 | static struct nand_bbt_descr sharpsl_bbt = { | ||
439 | .options = 0, | ||
440 | .offs = 4, | ||
441 | .len = 2, | ||
442 | .pattern = scan_ff_pattern | ||
443 | }; | ||
444 | |||
445 | static struct sharpsl_nand_platform_data sharpsl_nand_platform_data = { | ||
446 | .badblock_pattern = &sharpsl_bbt, | ||
447 | .partitions = sharpsl_nand_partitions, | ||
448 | .nr_partitions = ARRAY_SIZE(sharpsl_nand_partitions), | ||
449 | }; | ||
450 | |||
451 | static struct resource sharpsl_nand_resources[] = { | ||
452 | { | ||
453 | .start = 0x0C000000, | ||
454 | .end = 0x0C000FFF, | ||
455 | .flags = IORESOURCE_MEM, | ||
456 | }, | ||
457 | }; | ||
458 | |||
459 | static struct platform_device sharpsl_nand_device = { | ||
460 | .name = "sharpsl-nand", | ||
461 | .id = -1, | ||
462 | .resource = sharpsl_nand_resources, | ||
463 | .num_resources = ARRAY_SIZE(sharpsl_nand_resources), | ||
464 | .dev.platform_data = &sharpsl_nand_platform_data, | ||
465 | }; | ||
466 | |||
417 | static struct mtd_partition sharpsl_rom_parts[] = { | 467 | static struct mtd_partition sharpsl_rom_parts[] = { |
418 | { | 468 | { |
419 | .name ="Boot PROM Filesystem", | 469 | .name ="Boot PROM Filesystem", |
@@ -447,6 +497,7 @@ static struct platform_device sharpsl_rom_device = { | |||
447 | static struct platform_device *devices[] __initdata = { | 497 | static struct platform_device *devices[] __initdata = { |
448 | &poodle_locomo_device, | 498 | &poodle_locomo_device, |
449 | &poodle_scoop_device, | 499 | &poodle_scoop_device, |
500 | &sharpsl_nand_device, | ||
450 | &sharpsl_rom_device, | 501 | &sharpsl_rom_device, |
451 | }; | 502 | }; |
452 | 503 | ||
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 7299d87a1cb3..6d447c9ce8ab 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/spi/spi.h> | 31 | #include <linux/spi/spi.h> |
32 | #include <linux/spi/ads7846.h> | 32 | #include <linux/spi/ads7846.h> |
33 | #include <linux/spi/corgi_lcd.h> | 33 | #include <linux/spi/corgi_lcd.h> |
34 | #include <linux/mtd/sharpsl.h> | ||
34 | 35 | ||
35 | #include <asm/setup.h> | 36 | #include <asm/setup.h> |
36 | #include <asm/memory.h> | 37 | #include <asm/memory.h> |
@@ -613,6 +614,54 @@ static struct pxafb_mach_info spitz_pxafb_info = { | |||
613 | .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_ALTERNATE_MAPPING, | 614 | .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_ALTERNATE_MAPPING, |
614 | }; | 615 | }; |
615 | 616 | ||
617 | static struct mtd_partition sharpsl_nand_partitions[] = { | ||
618 | { | ||
619 | .name = "System Area", | ||
620 | .offset = 0, | ||
621 | .size = 7 * 1024 * 1024, | ||
622 | }, | ||
623 | { | ||
624 | .name = "Root Filesystem", | ||
625 | .offset = 7 * 1024 * 1024, | ||
626 | }, | ||
627 | { | ||
628 | .name = "Home Filesystem", | ||
629 | .offset = MTDPART_OFS_APPEND, | ||
630 | .size = MTDPART_SIZ_FULL, | ||
631 | }, | ||
632 | }; | ||
633 | |||
634 | static uint8_t scan_ff_pattern[] = { 0xff, 0xff }; | ||
635 | |||
636 | static struct nand_bbt_descr sharpsl_bbt = { | ||
637 | .options = 0, | ||
638 | .offs = 4, | ||
639 | .len = 2, | ||
640 | .pattern = scan_ff_pattern | ||
641 | }; | ||
642 | |||
643 | static struct sharpsl_nand_platform_data sharpsl_nand_platform_data = { | ||
644 | .badblock_pattern = &sharpsl_bbt, | ||
645 | .partitions = sharpsl_nand_partitions, | ||
646 | .nr_partitions = ARRAY_SIZE(sharpsl_nand_partitions), | ||
647 | }; | ||
648 | |||
649 | static struct resource sharpsl_nand_resources[] = { | ||
650 | { | ||
651 | .start = 0x0C000000, | ||
652 | .end = 0x0C000FFF, | ||
653 | .flags = IORESOURCE_MEM, | ||
654 | }, | ||
655 | }; | ||
656 | |||
657 | static struct platform_device sharpsl_nand_device = { | ||
658 | .name = "sharpsl-nand", | ||
659 | .id = -1, | ||
660 | .resource = sharpsl_nand_resources, | ||
661 | .num_resources = ARRAY_SIZE(sharpsl_nand_resources), | ||
662 | .dev.platform_data = &sharpsl_nand_platform_data, | ||
663 | }; | ||
664 | |||
616 | 665 | ||
617 | static struct mtd_partition sharpsl_rom_parts[] = { | 666 | static struct mtd_partition sharpsl_rom_parts[] = { |
618 | { | 667 | { |
@@ -648,6 +697,7 @@ static struct platform_device *devices[] __initdata = { | |||
648 | &spitzscoop_device, | 697 | &spitzscoop_device, |
649 | &spitzkbd_device, | 698 | &spitzkbd_device, |
650 | &spitzled_device, | 699 | &spitzled_device, |
700 | &sharpsl_nand_device, | ||
651 | &sharpsl_rom_device, | 701 | &sharpsl_rom_device, |
652 | }; | 702 | }; |
653 | 703 | ||
@@ -671,6 +721,14 @@ static void __init common_init(void) | |||
671 | pm_power_off = spitz_poweroff; | 721 | pm_power_off = spitz_poweroff; |
672 | arm_pm_restart = spitz_restart; | 722 | arm_pm_restart = spitz_restart; |
673 | 723 | ||
724 | if (machine_is_spitz()) { | ||
725 | sharpsl_nand_partitions[1].size = 5 * 1024 * 1024; | ||
726 | } else if (machine_is_akita()) { | ||
727 | sharpsl_nand_partitions[1].size = 58 * 1024 * 1024; | ||
728 | } else if (machine_is_borzoi()) { | ||
729 | sharpsl_nand_partitions[1].size = 32 * 1024 * 1024; | ||
730 | } | ||
731 | |||
674 | PMCR = 0x00; | 732 | PMCR = 0x00; |
675 | 733 | ||
676 | /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */ | 734 | /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */ |
@@ -715,10 +773,29 @@ static struct i2c_board_info akita_i2c_board_info[] = { | |||
715 | }, | 773 | }, |
716 | }; | 774 | }; |
717 | 775 | ||
776 | static struct nand_bbt_descr sharpsl_akita_bbt = { | ||
777 | .options = 0, | ||
778 | .offs = 4, | ||
779 | .len = 1, | ||
780 | .pattern = scan_ff_pattern | ||
781 | }; | ||
782 | |||
783 | static struct nand_ecclayout akita_oobinfo = { | ||
784 | .eccbytes = 24, | ||
785 | .eccpos = { | ||
786 | 0x5, 0x1, 0x2, 0x3, 0x6, 0x7, 0x15, 0x11, | ||
787 | 0x12, 0x13, 0x16, 0x17, 0x25, 0x21, 0x22, 0x23, | ||
788 | 0x26, 0x27, 0x35, 0x31, 0x32, 0x33, 0x36, 0x37}, | ||
789 | .oobfree = {{0x08, 0x09}} | ||
790 | }; | ||
791 | |||
718 | static void __init akita_init(void) | 792 | static void __init akita_init(void) |
719 | { | 793 | { |
720 | spitz_ficp_platform_data.transceiver_mode = akita_irda_transceiver_mode; | 794 | spitz_ficp_platform_data.transceiver_mode = akita_irda_transceiver_mode; |
721 | 795 | ||
796 | sharpsl_nand_platform_data.badblock_pattern = &sharpsl_akita_bbt; | ||
797 | sharpsl_nand_platform_data.ecc_layout = &akita_oobinfo; | ||
798 | |||
722 | /* We just pretend the second element of the array doesn't exist */ | 799 | /* We just pretend the second element of the array doesn't exist */ |
723 | spitz_pcmcia_config.num_devs = 1; | 800 | spitz_pcmcia_config.num_devs = 1; |
724 | platform_scoop_config = &spitz_pcmcia_config; | 801 | platform_scoop_config = &spitz_pcmcia_config; |