spi.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * arch/arm/mach-u300/spi.c
  3. *
  4. * Copyright (C) 2009 ST-Ericsson AB
  5. * License terms: GNU General Public License (GPL) version 2
  6. *
  7. * Author: Linus Walleij <linus.walleij@stericsson.com>
  8. */
  9. #include <linux/device.h>
  10. #include <linux/amba/bus.h>
  11. #include <linux/spi/spi.h>
  12. #include <linux/amba/pl022.h>
  13. #include <linux/err.h>
  14. #include <mach/coh901318.h>
  15. #include <mach/dma_channels.h>
  16. /*
  17. * The following is for the actual devices on the SSP/SPI bus
  18. */
  19. #ifdef CONFIG_MACH_U300_SPIDUMMY
  20. static void select_dummy_chip(u32 chipselect)
  21. {
  22. pr_debug("CORE: %s called with CS=0x%x (%s)\n",
  23. __func__,
  24. chipselect,
  25. chipselect ? "unselect chip" : "select chip");
  26. /*
  27. * Here you would write the chip select value to the GPIO pins if
  28. * this was a real chip (but this is a loopback dummy).
  29. */
  30. }
  31. struct pl022_config_chip dummy_chip_info = {
  32. /* available POLLING_TRANSFER, INTERRUPT_TRANSFER, DMA_TRANSFER */
  33. .com_mode = DMA_TRANSFER,
  34. .iface = SSP_INTERFACE_MOTOROLA_SPI,
  35. /* We can only act as master but SSP_SLAVE is possible in theory */
  36. .hierarchy = SSP_MASTER,
  37. /* 0 = drive TX even as slave, 1 = do not drive TX as slave */
  38. .slave_tx_disable = 0,
  39. .rx_lev_trig = SSP_RX_4_OR_MORE_ELEM,
  40. .tx_lev_trig = SSP_TX_4_OR_MORE_EMPTY_LOC,
  41. .ctrl_len = SSP_BITS_12,
  42. .wait_state = SSP_MWIRE_WAIT_ZERO,
  43. .duplex = SSP_MICROWIRE_CHANNEL_FULL_DUPLEX,
  44. /*
  45. * This is where you insert a call to a function to enable CS
  46. * (usually GPIO) for a certain chip.
  47. */
  48. .cs_control = select_dummy_chip,
  49. };
  50. #endif
  51. static struct spi_board_info u300_spi_devices[] = {
  52. #ifdef CONFIG_MACH_U300_SPIDUMMY
  53. {
  54. /* A dummy chip used for loopback tests */
  55. .modalias = "spi-dummy",
  56. /* Really dummy, pass in additional chip config here */
  57. .platform_data = NULL,
  58. /* This defines how the controller shall handle the device */
  59. .controller_data = &dummy_chip_info,
  60. /* .irq - no external IRQ routed from this device */
  61. .max_speed_hz = 1000000,
  62. .bus_num = 0, /* Only one bus on this chip */
  63. .chip_select = 0,
  64. /* Means SPI_CS_HIGH, change if e.g low CS */
  65. .mode = SPI_MODE_1 | SPI_LOOP,
  66. },
  67. #endif
  68. };
  69. static struct pl022_ssp_controller ssp_platform_data = {
  70. /* If you have several SPI buses this varies, we have only bus 0 */
  71. .bus_id = 0,
  72. /*
  73. * On the APP CPU GPIO 4, 5 and 6 are connected as generic
  74. * chip selects for SPI. (Same on U330, U335 and U365.)
  75. * TODO: make sure the GPIO driver can select these properly
  76. * and do padmuxing accordingly too.
  77. */
  78. .num_chipselect = 3,
  79. #ifdef CONFIG_COH901318
  80. .enable_dma = 1,
  81. .dma_filter = coh901318_filter_id,
  82. .dma_rx_param = (void *) U300_DMA_SPI_RX,
  83. .dma_tx_param = (void *) U300_DMA_SPI_TX,
  84. #else
  85. .enable_dma = 0,
  86. #endif
  87. };
  88. void __init u300_spi_init(struct amba_device *adev)
  89. {
  90. adev->dev.platform_data = &ssp_platform_data;
  91. }
  92. void __init u300_spi_register_board_devices(void)
  93. {
  94. /* Register any SPI devices */
  95. spi_register_board_info(u300_spi_devices, ARRAY_SIZE(u300_spi_devices));
  96. }