m54xx.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // SPDX-License-Identifier: GPL-2.0
  2. /***************************************************************************/
  3. /*
  4. * m54xx.c -- platform support for ColdFire 54xx based boards
  5. *
  6. * Copyright (C) 2010, Philippe De Muyter <phdm@macqel.be>
  7. */
  8. /***************************************************************************/
  9. #include <linux/kernel.h>
  10. #include <linux/param.h>
  11. #include <linux/init.h>
  12. #include <linux/interrupt.h>
  13. #include <linux/io.h>
  14. #include <linux/mm.h>
  15. #include <linux/clk.h>
  16. #include <linux/bootmem.h>
  17. #include <asm/pgalloc.h>
  18. #include <asm/machdep.h>
  19. #include <asm/coldfire.h>
  20. #include <asm/m54xxsim.h>
  21. #include <asm/mcfuart.h>
  22. #include <asm/mcfclk.h>
  23. #include <asm/m54xxgpt.h>
  24. #ifdef CONFIG_MMU
  25. #include <asm/mmu_context.h>
  26. #endif
  27. /***************************************************************************/
  28. DEFINE_CLK(pll, "pll.0", MCF_CLK);
  29. DEFINE_CLK(sys, "sys.0", MCF_BUSCLK);
  30. DEFINE_CLK(mcfslt0, "mcfslt.0", MCF_BUSCLK);
  31. DEFINE_CLK(mcfslt1, "mcfslt.1", MCF_BUSCLK);
  32. DEFINE_CLK(mcfuart0, "mcfuart.0", MCF_BUSCLK);
  33. DEFINE_CLK(mcfuart1, "mcfuart.1", MCF_BUSCLK);
  34. DEFINE_CLK(mcfuart2, "mcfuart.2", MCF_BUSCLK);
  35. DEFINE_CLK(mcfuart3, "mcfuart.3", MCF_BUSCLK);
  36. DEFINE_CLK(mcfi2c0, "imx1-i2c.0", MCF_BUSCLK);
  37. struct clk *mcf_clks[] = {
  38. &clk_pll,
  39. &clk_sys,
  40. &clk_mcfslt0,
  41. &clk_mcfslt1,
  42. &clk_mcfuart0,
  43. &clk_mcfuart1,
  44. &clk_mcfuart2,
  45. &clk_mcfuart3,
  46. &clk_mcfi2c0,
  47. NULL
  48. };
  49. /***************************************************************************/
  50. static void __init m54xx_uarts_init(void)
  51. {
  52. /* enable io pins */
  53. __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD, MCFGPIO_PAR_PSC0);
  54. __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD | MCF_PAR_PSC_RTS_RTS,
  55. MCFGPIO_PAR_PSC1);
  56. __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD | MCF_PAR_PSC_RTS_RTS |
  57. MCF_PAR_PSC_CTS_CTS, MCFGPIO_PAR_PSC2);
  58. __raw_writeb(MCF_PAR_PSC_TXD | MCF_PAR_PSC_RXD, MCFGPIO_PAR_PSC3);
  59. }
  60. /***************************************************************************/
  61. static void __init m54xx_i2c_init(void)
  62. {
  63. #if IS_ENABLED(CONFIG_I2C_IMX)
  64. u32 r;
  65. /* set the fec/i2c/irq pin assignment register for i2c */
  66. r = readl(MCF_PAR_FECI2CIRQ);
  67. r |= MCF_PAR_FECI2CIRQ_SDA | MCF_PAR_FECI2CIRQ_SCL;
  68. writel(r, MCF_PAR_FECI2CIRQ);
  69. #endif /* IS_ENABLED(CONFIG_I2C_IMX) */
  70. }
  71. /***************************************************************************/
  72. static void mcf54xx_reset(void)
  73. {
  74. /* disable interrupts and enable the watchdog */
  75. asm("movew #0x2700, %sr\n");
  76. __raw_writel(0, MCF_GPT_GMS0);
  77. __raw_writel(MCF_GPT_GCIR_CNT(1), MCF_GPT_GCIR0);
  78. __raw_writel(MCF_GPT_GMS_WDEN | MCF_GPT_GMS_CE | MCF_GPT_GMS_TMS(4),
  79. MCF_GPT_GMS0);
  80. }
  81. /***************************************************************************/
  82. void __init config_BSP(char *commandp, int size)
  83. {
  84. #ifdef CONFIG_MMU
  85. cf_bootmem_alloc();
  86. mmu_context_init();
  87. #endif
  88. mach_reset = mcf54xx_reset;
  89. mach_sched_init = hw_timer_init;
  90. m54xx_uarts_init();
  91. m54xx_i2c_init();
  92. }
  93. /***************************************************************************/