m5307.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /***************************************************************************/
  2. /*
  3. * linux/arch/m68knommu/platform/5307/config.c
  4. *
  5. * Copyright (C) 1999-2002, Greg Ungerer (gerg@snapgear.com)
  6. * Copyright (C) 2000, Lineo (www.lineo.com)
  7. */
  8. /***************************************************************************/
  9. #include <linux/kernel.h>
  10. #include <linux/param.h>
  11. #include <linux/init.h>
  12. #include <linux/io.h>
  13. #include <asm/machdep.h>
  14. #include <asm/coldfire.h>
  15. #include <asm/mcfsim.h>
  16. #include <asm/mcfgpio.h>
  17. #include <asm/mcfwdebug.h>
  18. /***************************************************************************/
  19. /*
  20. * Some platforms need software versions of the GPIO data registers.
  21. */
  22. unsigned short ppdata;
  23. unsigned char ledbank = 0xff;
  24. /***************************************************************************/
  25. struct mcf_gpio_chip mcf_gpio_chips[] = {
  26. MCFGPS(PP, 0, 16, MCFSIM_PADDR, MCFSIM_PADAT, MCFSIM_PADAT),
  27. };
  28. unsigned int mcf_gpio_chips_size = ARRAY_SIZE(mcf_gpio_chips);
  29. /***************************************************************************/
  30. void __init config_BSP(char *commandp, int size)
  31. {
  32. #if defined(CONFIG_NETtel) || \
  33. defined(CONFIG_SECUREEDGEMP3) || defined(CONFIG_CLEOPATRA)
  34. /* Copy command line from FLASH to local buffer... */
  35. memcpy(commandp, (char *) 0xf0004000, size);
  36. commandp[size-1] = 0;
  37. #endif
  38. mach_sched_init = hw_timer_init;
  39. /* Only support the external interrupts on their primary level */
  40. mcf_mapirq2imr(25, MCFINTC_EINT1);
  41. mcf_mapirq2imr(27, MCFINTC_EINT3);
  42. mcf_mapirq2imr(29, MCFINTC_EINT5);
  43. mcf_mapirq2imr(31, MCFINTC_EINT7);
  44. #ifdef CONFIG_BDM_DISABLE
  45. /*
  46. * Disable the BDM clocking. This also turns off most of the rest of
  47. * the BDM device. This is good for EMC reasons. This option is not
  48. * incompatible with the memory protection option.
  49. */
  50. wdebug(MCFDEBUG_CSR, MCFDEBUG_CSR_PSTCLK);
  51. #endif
  52. }
  53. /***************************************************************************/