mpc837x_rdb.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * arch/powerpc/platforms/83xx/mpc837x_rdb.c
  3. *
  4. * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
  5. *
  6. * MPC837x RDB board specific routines
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. */
  13. #include <linux/pci.h>
  14. #include <linux/of_platform.h>
  15. #include <asm/time.h>
  16. #include <asm/ipic.h>
  17. #include <asm/udbg.h>
  18. #include <sysdev/fsl_soc.h>
  19. #include <sysdev/fsl_pci.h>
  20. #include "mpc83xx.h"
  21. static void mpc837x_rdb_sd_cfg(void)
  22. {
  23. void __iomem *im;
  24. im = ioremap(get_immrbase(), 0x1000);
  25. if (!im) {
  26. WARN_ON(1);
  27. return;
  28. }
  29. /*
  30. * On RDB boards (in contrast to MDS) USBB pins are used for SD only,
  31. * so we can safely mux them away from the USB block.
  32. */
  33. clrsetbits_be32(im + MPC83XX_SICRL_OFFS, MPC837X_SICRL_USBB_MASK,
  34. MPC837X_SICRL_SD);
  35. clrsetbits_be32(im + MPC83XX_SICRH_OFFS, MPC837X_SICRH_SPI_MASK,
  36. MPC837X_SICRH_SD);
  37. iounmap(im);
  38. }
  39. /* ************************************************************************
  40. *
  41. * Setup the architecture
  42. *
  43. */
  44. static void __init mpc837x_rdb_setup_arch(void)
  45. {
  46. mpc83xx_setup_arch();
  47. mpc837x_usb_cfg();
  48. mpc837x_rdb_sd_cfg();
  49. }
  50. machine_device_initcall(mpc837x_rdb, mpc83xx_declare_of_platform_devices);
  51. static const char * const board[] __initconst = {
  52. "fsl,mpc8377rdb",
  53. "fsl,mpc8378rdb",
  54. "fsl,mpc8379rdb",
  55. "fsl,mpc8377wlan",
  56. NULL
  57. };
  58. /*
  59. * Called very early, MMU is off, device-tree isn't unflattened
  60. */
  61. static int __init mpc837x_rdb_probe(void)
  62. {
  63. return of_device_compatible_match(of_root, board);
  64. }
  65. define_machine(mpc837x_rdb) {
  66. .name = "MPC837x RDB/WLAN",
  67. .probe = mpc837x_rdb_probe,
  68. .setup_arch = mpc837x_rdb_setup_arch,
  69. .init_IRQ = mpc83xx_ipic_init_IRQ,
  70. .get_irq = ipic_get_irq,
  71. .restart = mpc83xx_restart,
  72. .time_init = mpc83xx_time_init,
  73. .calibrate_decr = generic_calibrate_decr,
  74. .progress = udbg_progress,
  75. };