spitz.c (f0eef25339f92f7cd4aeea23d9ae97987a5a1e82) spitz.c (cd49104d99b56383a3b1fdce2f31018197093c31)
1/*
2 * Support for Sharp SL-Cxx00 Series of PDAs
3 * Models: SL-C3000 (Spitz), SL-C1000 (Akita) and SL-C3100 (Borzoi)
4 *
5 * Copyright (c) 2005 Richard Purdie
6 *
7 * Based on Sharp's 2.4 kernel patches/lubbock.c
8 *

--- 546 unchanged lines hidden (view full) ---

555}
556
557#ifdef CONFIG_MACH_SPITZ
558MACHINE_START(SPITZ, "SHARP Spitz")
559 .phys_io = 0x40000000,
560 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
561 .fixup = fixup_spitz,
562 .map_io = pxa_map_io,
1/*
2 * Support for Sharp SL-Cxx00 Series of PDAs
3 * Models: SL-C3000 (Spitz), SL-C1000 (Akita) and SL-C3100 (Borzoi)
4 *
5 * Copyright (c) 2005 Richard Purdie
6 *
7 * Based on Sharp's 2.4 kernel patches/lubbock.c
8 *

--- 546 unchanged lines hidden (view full) ---

555}
556
557#ifdef CONFIG_MACH_SPITZ
558MACHINE_START(SPITZ, "SHARP Spitz")
559 .phys_io = 0x40000000,
560 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
561 .fixup = fixup_spitz,
562 .map_io = pxa_map_io,
563 .init_irq = pxa_init_irq,
563 .init_irq = pxa27x_init_irq,
564 .init_machine = spitz_init,
565 .timer = &pxa_timer,
566MACHINE_END
567#endif
568
569#ifdef CONFIG_MACH_BORZOI
570MACHINE_START(BORZOI, "SHARP Borzoi")
571 .phys_io = 0x40000000,
572 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
573 .fixup = fixup_spitz,
574 .map_io = pxa_map_io,
564 .init_machine = spitz_init,
565 .timer = &pxa_timer,
566MACHINE_END
567#endif
568
569#ifdef CONFIG_MACH_BORZOI
570MACHINE_START(BORZOI, "SHARP Borzoi")
571 .phys_io = 0x40000000,
572 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
573 .fixup = fixup_spitz,
574 .map_io = pxa_map_io,
575 .init_irq = pxa_init_irq,
575 .init_irq = pxa27x_init_irq,
576 .init_machine = spitz_init,
577 .timer = &pxa_timer,
578MACHINE_END
579#endif
580
581#ifdef CONFIG_MACH_AKITA
582MACHINE_START(AKITA, "SHARP Akita")
583 .phys_io = 0x40000000,
584 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
585 .fixup = fixup_spitz,
586 .map_io = pxa_map_io,
576 .init_machine = spitz_init,
577 .timer = &pxa_timer,
578MACHINE_END
579#endif
580
581#ifdef CONFIG_MACH_AKITA
582MACHINE_START(AKITA, "SHARP Akita")
583 .phys_io = 0x40000000,
584 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
585 .fixup = fixup_spitz,
586 .map_io = pxa_map_io,
587 .init_irq = pxa_init_irq,
587 .init_irq = pxa27x_init_irq,
588 .init_machine = akita_init,
589 .timer = &pxa_timer,
590MACHINE_END
591#endif
588 .init_machine = akita_init,
589 .timer = &pxa_timer,
590MACHINE_END
591#endif