Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 1 | /* |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 2 | * MPC8xxx SPI controller driver. |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 3 | * |
| 4 | * Maintainer: Kumar Gala |
| 5 | * |
| 6 | * Copyright (C) 2006 Polycom, Inc. |
| 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/module.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/types.h> |
| 16 | #include <linux/kernel.h> |
Anton Vorontsov | fd8a11e | 2009-06-18 16:49:01 -0700 | [diff] [blame] | 17 | #include <linux/bug.h> |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 18 | #include <linux/errno.h> |
| 19 | #include <linux/err.h> |
Anton Vorontsov | 9effb95 | 2009-06-18 16:49:05 -0700 | [diff] [blame] | 20 | #include <linux/io.h> |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 21 | #include <linux/completion.h> |
| 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/device.h> |
| 26 | #include <linux/spi/spi.h> |
| 27 | #include <linux/spi/spi_bitbang.h> |
| 28 | #include <linux/platform_device.h> |
| 29 | #include <linux/fsl_devices.h> |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 30 | #include <linux/of.h> |
| 31 | #include <linux/of_platform.h> |
| 32 | #include <linux/gpio.h> |
| 33 | #include <linux/of_gpio.h> |
| 34 | #include <linux/of_spi.h> |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 35 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 36 | #include <sysdev/fsl_soc.h> |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 37 | #include <asm/irq.h> |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 38 | |
| 39 | /* SPI Controller registers */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 40 | struct mpc8xxx_spi_reg { |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 41 | u8 res1[0x20]; |
| 42 | __be32 mode; |
| 43 | __be32 event; |
| 44 | __be32 mask; |
| 45 | __be32 command; |
| 46 | __be32 transmit; |
| 47 | __be32 receive; |
| 48 | }; |
| 49 | |
| 50 | /* SPI Controller mode register definitions */ |
Anton Vorontsov | 2a485d7 | 2007-07-31 00:38:45 -0700 | [diff] [blame] | 51 | #define SPMODE_LOOP (1 << 30) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 52 | #define SPMODE_CI_INACTIVEHIGH (1 << 29) |
| 53 | #define SPMODE_CP_BEGIN_EDGECLK (1 << 28) |
| 54 | #define SPMODE_DIV16 (1 << 27) |
| 55 | #define SPMODE_REV (1 << 26) |
| 56 | #define SPMODE_MS (1 << 25) |
| 57 | #define SPMODE_ENABLE (1 << 24) |
| 58 | #define SPMODE_LEN(x) ((x) << 20) |
| 59 | #define SPMODE_PM(x) ((x) << 16) |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 60 | #define SPMODE_OP (1 << 14) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 61 | #define SPMODE_CG(x) ((x) << 7) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 62 | |
| 63 | /* |
| 64 | * Default for SPI Mode: |
| 65 | * SPI MODE 0 (inactive low, phase middle, MSB, 8-bit length, slow clk |
| 66 | */ |
| 67 | #define SPMODE_INIT_VAL (SPMODE_CI_INACTIVEHIGH | SPMODE_DIV16 | SPMODE_REV | \ |
| 68 | SPMODE_MS | SPMODE_LEN(7) | SPMODE_PM(0xf)) |
| 69 | |
| 70 | /* SPIE register values */ |
| 71 | #define SPIE_NE 0x00000200 /* Not empty */ |
| 72 | #define SPIE_NF 0x00000100 /* Not full */ |
| 73 | |
| 74 | /* SPIM register values */ |
| 75 | #define SPIM_NE 0x00000200 /* Not empty */ |
| 76 | #define SPIM_NF 0x00000100 /* Not full */ |
| 77 | |
| 78 | /* SPI Controller driver's private data. */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 79 | struct mpc8xxx_spi { |
| 80 | struct mpc8xxx_spi_reg __iomem *base; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 81 | |
| 82 | /* rx & tx bufs from the spi_transfer */ |
| 83 | const void *tx; |
| 84 | void *rx; |
| 85 | |
| 86 | /* functions to deal with different sized buffers */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 87 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); |
| 88 | u32(*get_tx) (struct mpc8xxx_spi *); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 89 | |
| 90 | unsigned int count; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 91 | unsigned int irq; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 92 | |
| 93 | unsigned nsecs; /* (clock cycle time)/2 */ |
| 94 | |
Anton Vorontsov | e24a4d1 | 2007-08-10 13:01:01 -0700 | [diff] [blame] | 95 | u32 spibrg; /* SPIBRG input clock */ |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 96 | u32 rx_shift; /* RX data reg shift when in qe mode */ |
| 97 | u32 tx_shift; /* TX data reg shift when in qe mode */ |
| 98 | |
| 99 | bool qe_mode; |
| 100 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 101 | struct workqueue_struct *workqueue; |
| 102 | struct work_struct work; |
| 103 | |
| 104 | struct list_head queue; |
| 105 | spinlock_t lock; |
| 106 | |
| 107 | struct completion done; |
| 108 | }; |
| 109 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 110 | struct spi_mpc8xxx_cs { |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 111 | /* functions to deal with different sized buffers */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 112 | void (*get_rx) (u32 rx_data, struct mpc8xxx_spi *); |
| 113 | u32 (*get_tx) (struct mpc8xxx_spi *); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 114 | u32 rx_shift; /* RX data reg shift when in qe mode */ |
| 115 | u32 tx_shift; /* TX data reg shift when in qe mode */ |
| 116 | u32 hw_mode; /* Holds HW mode register settings */ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 117 | }; |
| 118 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 119 | static inline void mpc8xxx_spi_write_reg(__be32 __iomem *reg, u32 val) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 120 | { |
| 121 | out_be32(reg, val); |
| 122 | } |
| 123 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 124 | static inline u32 mpc8xxx_spi_read_reg(__be32 __iomem *reg) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 125 | { |
| 126 | return in_be32(reg); |
| 127 | } |
| 128 | |
| 129 | #define MPC83XX_SPI_RX_BUF(type) \ |
Anton Vorontsov | 34c8a20 | 2009-03-31 15:24:35 -0700 | [diff] [blame] | 130 | static \ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 131 | void mpc8xxx_spi_rx_buf_##type(u32 data, struct mpc8xxx_spi *mpc8xxx_spi) \ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 132 | { \ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 133 | type *rx = mpc8xxx_spi->rx; \ |
| 134 | *rx++ = (type)(data >> mpc8xxx_spi->rx_shift); \ |
| 135 | mpc8xxx_spi->rx = rx; \ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | #define MPC83XX_SPI_TX_BUF(type) \ |
Anton Vorontsov | 34c8a20 | 2009-03-31 15:24:35 -0700 | [diff] [blame] | 139 | static \ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 140 | u32 mpc8xxx_spi_tx_buf_##type(struct mpc8xxx_spi *mpc8xxx_spi) \ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 141 | { \ |
| 142 | u32 data; \ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 143 | const type *tx = mpc8xxx_spi->tx; \ |
David Brownell | 4b1badf | 2006-12-29 16:48:39 -0800 | [diff] [blame] | 144 | if (!tx) \ |
| 145 | return 0; \ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 146 | data = *tx++ << mpc8xxx_spi->tx_shift; \ |
| 147 | mpc8xxx_spi->tx = tx; \ |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 148 | return data; \ |
| 149 | } |
| 150 | |
| 151 | MPC83XX_SPI_RX_BUF(u8) |
| 152 | MPC83XX_SPI_RX_BUF(u16) |
| 153 | MPC83XX_SPI_RX_BUF(u32) |
| 154 | MPC83XX_SPI_TX_BUF(u8) |
| 155 | MPC83XX_SPI_TX_BUF(u16) |
| 156 | MPC83XX_SPI_TX_BUF(u32) |
| 157 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 158 | static void mpc8xxx_spi_chipselect(struct spi_device *spi, int value) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 159 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 160 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 161 | struct fsl_spi_platform_data *pdata = spi->dev.parent->platform_data; |
| 162 | bool pol = spi->mode & SPI_CS_HIGH; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 163 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 164 | |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 165 | if (value == BITBANG_CS_INACTIVE) { |
Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 166 | if (pdata->cs_control) |
| 167 | pdata->cs_control(spi, !pol); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | if (value == BITBANG_CS_ACTIVE) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 171 | u32 regval = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode); |
Anton Vorontsov | a44648b | 2007-08-10 13:01:02 -0700 | [diff] [blame] | 172 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 173 | mpc8xxx_spi->rx_shift = cs->rx_shift; |
| 174 | mpc8xxx_spi->tx_shift = cs->tx_shift; |
| 175 | mpc8xxx_spi->get_rx = cs->get_rx; |
| 176 | mpc8xxx_spi->get_tx = cs->get_tx; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 177 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 178 | if (cs->hw_mode != regval) { |
| 179 | unsigned long flags; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 180 | __be32 __iomem *mode = &mpc8xxx_spi->base->mode; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 181 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 182 | regval = cs->hw_mode; |
| 183 | /* Turn off IRQs locally to minimize time that |
| 184 | * SPI is disabled |
| 185 | */ |
| 186 | local_irq_save(flags); |
| 187 | /* Turn off SPI unit prior changing mode */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 188 | mpc8xxx_spi_write_reg(mode, regval & ~SPMODE_ENABLE); |
| 189 | mpc8xxx_spi_write_reg(mode, regval); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 190 | local_irq_restore(flags); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 191 | } |
Anton Vorontsov | 364fdbc | 2009-03-31 15:24:36 -0700 | [diff] [blame] | 192 | if (pdata->cs_control) |
| 193 | pdata->cs_control(spi, pol); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | static |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 198 | int mpc8xxx_spi_setup_transfer(struct spi_device *spi, struct spi_transfer *t) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 199 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 200 | struct mpc8xxx_spi *mpc8xxx_spi; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 201 | u32 regval; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 202 | u8 bits_per_word, pm; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 203 | u32 hz; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 204 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 205 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 206 | mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 207 | |
| 208 | if (t) { |
| 209 | bits_per_word = t->bits_per_word; |
| 210 | hz = t->speed_hz; |
| 211 | } else { |
| 212 | bits_per_word = 0; |
| 213 | hz = 0; |
| 214 | } |
| 215 | |
| 216 | /* spi_transfer level calls that work per-word */ |
| 217 | if (!bits_per_word) |
| 218 | bits_per_word = spi->bits_per_word; |
| 219 | |
| 220 | /* Make sure its a bit width we support [4..16, 32] */ |
| 221 | if ((bits_per_word < 4) |
| 222 | || ((bits_per_word > 16) && (bits_per_word != 32))) |
| 223 | return -EINVAL; |
| 224 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 225 | if (!hz) |
| 226 | hz = spi->max_speed_hz; |
| 227 | |
| 228 | cs->rx_shift = 0; |
| 229 | cs->tx_shift = 0; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 230 | if (bits_per_word <= 8) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 231 | cs->get_rx = mpc8xxx_spi_rx_buf_u8; |
| 232 | cs->get_tx = mpc8xxx_spi_tx_buf_u8; |
| 233 | if (mpc8xxx_spi->qe_mode) { |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 234 | cs->rx_shift = 16; |
| 235 | cs->tx_shift = 24; |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 236 | } |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 237 | } else if (bits_per_word <= 16) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 238 | cs->get_rx = mpc8xxx_spi_rx_buf_u16; |
| 239 | cs->get_tx = mpc8xxx_spi_tx_buf_u16; |
| 240 | if (mpc8xxx_spi->qe_mode) { |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 241 | cs->rx_shift = 16; |
| 242 | cs->tx_shift = 16; |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 243 | } |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 244 | } else if (bits_per_word <= 32) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 245 | cs->get_rx = mpc8xxx_spi_rx_buf_u32; |
| 246 | cs->get_tx = mpc8xxx_spi_tx_buf_u32; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 247 | } else |
| 248 | return -EINVAL; |
| 249 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 250 | if (mpc8xxx_spi->qe_mode && spi->mode & SPI_LSB_FIRST) { |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 251 | cs->tx_shift = 0; |
Anton Vorontsov | 35cc0b9 | 2007-07-31 00:38:42 -0700 | [diff] [blame] | 252 | if (bits_per_word <= 8) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 253 | cs->rx_shift = 8; |
Anton Vorontsov | 35cc0b9 | 2007-07-31 00:38:42 -0700 | [diff] [blame] | 254 | else |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 255 | cs->rx_shift = 0; |
Anton Vorontsov | 35cc0b9 | 2007-07-31 00:38:42 -0700 | [diff] [blame] | 256 | } |
| 257 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 258 | mpc8xxx_spi->rx_shift = cs->rx_shift; |
| 259 | mpc8xxx_spi->tx_shift = cs->tx_shift; |
| 260 | mpc8xxx_spi->get_rx = cs->get_rx; |
| 261 | mpc8xxx_spi->get_tx = cs->get_tx; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 262 | |
| 263 | if (bits_per_word == 32) |
| 264 | bits_per_word = 0; |
| 265 | else |
| 266 | bits_per_word = bits_per_word - 1; |
| 267 | |
Anton Vorontsov | 32421da | 2007-07-31 00:38:41 -0700 | [diff] [blame] | 268 | /* mask out bits we are going to set */ |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 269 | cs->hw_mode &= ~(SPMODE_LEN(0xF) | SPMODE_DIV16 |
| 270 | | SPMODE_PM(0xF)); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 271 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 272 | cs->hw_mode |= SPMODE_LEN(bits_per_word); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 273 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 274 | if ((mpc8xxx_spi->spibrg / hz) > 64) { |
Peter Korsgaard | 53604db | 2008-09-13 02:33:14 -0700 | [diff] [blame] | 275 | cs->hw_mode |= SPMODE_DIV16; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 276 | pm = mpc8xxx_spi->spibrg / (hz * 64); |
Anton Vorontsov | fd8a11e | 2009-06-18 16:49:01 -0700 | [diff] [blame] | 277 | |
| 278 | WARN_ONCE(pm > 16, "%s: Requested speed is too low: %d Hz. " |
| 279 | "Will use %d Hz instead.\n", dev_name(&spi->dev), |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 280 | hz, mpc8xxx_spi->spibrg / 1024); |
Anton Vorontsov | fd8a11e | 2009-06-18 16:49:01 -0700 | [diff] [blame] | 281 | if (pm > 16) |
Peter Korsgaard | 53604db | 2008-09-13 02:33:14 -0700 | [diff] [blame] | 282 | pm = 16; |
Chen Gong | a61f534 | 2008-07-23 21:29:52 -0700 | [diff] [blame] | 283 | } else |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 284 | pm = mpc8xxx_spi->spibrg / (hz * 4); |
Chen Gong | a61f534 | 2008-07-23 21:29:52 -0700 | [diff] [blame] | 285 | if (pm) |
| 286 | pm--; |
| 287 | |
| 288 | cs->hw_mode |= SPMODE_PM(pm); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 289 | regval = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 290 | if (cs->hw_mode != regval) { |
| 291 | unsigned long flags; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 292 | __be32 __iomem *mode = &mpc8xxx_spi->base->mode; |
David Brownell | dccd573 | 2007-07-17 04:04:02 -0700 | [diff] [blame] | 293 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 294 | regval = cs->hw_mode; |
| 295 | /* Turn off IRQs locally to minimize time |
| 296 | * that SPI is disabled |
| 297 | */ |
| 298 | local_irq_save(flags); |
| 299 | /* Turn off SPI unit prior changing mode */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 300 | mpc8xxx_spi_write_reg(mode, regval & ~SPMODE_ENABLE); |
| 301 | mpc8xxx_spi_write_reg(mode, regval); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 302 | local_irq_restore(flags); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 303 | } |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 304 | return 0; |
| 305 | } |
| 306 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 307 | static int mpc8xxx_spi_bufs(struct spi_device *spi, struct spi_transfer *t) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 308 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 309 | struct mpc8xxx_spi *mpc8xxx_spi; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 310 | u32 word, len, bits_per_word; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 311 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 312 | mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 313 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 314 | mpc8xxx_spi->tx = t->tx_buf; |
| 315 | mpc8xxx_spi->rx = t->rx_buf; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 316 | bits_per_word = spi->bits_per_word; |
| 317 | if (t->bits_per_word) |
| 318 | bits_per_word = t->bits_per_word; |
| 319 | len = t->len; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 320 | if (bits_per_word > 8) { |
| 321 | /* invalid length? */ |
| 322 | if (len & 1) |
| 323 | return -EINVAL; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 324 | len /= 2; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 325 | } |
| 326 | if (bits_per_word > 16) { |
| 327 | /* invalid length? */ |
| 328 | if (len & 1) |
| 329 | return -EINVAL; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 330 | len /= 2; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 331 | } |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 332 | mpc8xxx_spi->count = len; |
Peter Korsgaard | aa77d96 | 2008-09-13 02:33:15 -0700 | [diff] [blame] | 333 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 334 | INIT_COMPLETION(mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 335 | |
| 336 | /* enable rx ints */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 337 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, SPIM_NE); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 338 | |
| 339 | /* transmit word */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 340 | word = mpc8xxx_spi->get_tx(mpc8xxx_spi); |
| 341 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 342 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 343 | wait_for_completion(&mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 344 | |
| 345 | /* disable rx ints */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 346 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 347 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 348 | return mpc8xxx_spi->count; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 351 | static void mpc8xxx_spi_do_one_msg(struct spi_message *m) |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 352 | { |
| 353 | struct spi_device *spi = m->spi; |
| 354 | struct spi_transfer *t; |
| 355 | unsigned int cs_change; |
| 356 | const int nsecs = 50; |
| 357 | int status; |
| 358 | |
| 359 | cs_change = 1; |
| 360 | status = 0; |
| 361 | list_for_each_entry(t, &m->transfers, transfer_list) { |
| 362 | if (t->bits_per_word || t->speed_hz) { |
| 363 | /* Don't allow changes if CS is active */ |
| 364 | status = -EINVAL; |
| 365 | |
| 366 | if (cs_change) |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 367 | status = mpc8xxx_spi_setup_transfer(spi, t); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 368 | if (status < 0) |
| 369 | break; |
| 370 | } |
| 371 | |
| 372 | if (cs_change) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 373 | mpc8xxx_spi_chipselect(spi, BITBANG_CS_ACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 374 | ndelay(nsecs); |
| 375 | } |
| 376 | cs_change = t->cs_change; |
| 377 | if (t->len) |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 378 | status = mpc8xxx_spi_bufs(spi, t); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 379 | if (status) { |
| 380 | status = -EMSGSIZE; |
| 381 | break; |
| 382 | } |
| 383 | m->actual_length += t->len; |
| 384 | |
| 385 | if (t->delay_usecs) |
| 386 | udelay(t->delay_usecs); |
| 387 | |
| 388 | if (cs_change) { |
| 389 | ndelay(nsecs); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 390 | mpc8xxx_spi_chipselect(spi, BITBANG_CS_INACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 391 | ndelay(nsecs); |
| 392 | } |
| 393 | } |
| 394 | |
| 395 | m->status = status; |
| 396 | m->complete(m->context); |
| 397 | |
| 398 | if (status || !cs_change) { |
| 399 | ndelay(nsecs); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 400 | mpc8xxx_spi_chipselect(spi, BITBANG_CS_INACTIVE); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 403 | mpc8xxx_spi_setup_transfer(spi, NULL); |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 404 | } |
| 405 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 406 | static void mpc8xxx_spi_work(struct work_struct *work) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 407 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 408 | struct mpc8xxx_spi *mpc8xxx_spi = container_of(work, struct mpc8xxx_spi, |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 409 | work); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 410 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 411 | spin_lock_irq(&mpc8xxx_spi->lock); |
| 412 | while (!list_empty(&mpc8xxx_spi->queue)) { |
| 413 | struct spi_message *m = container_of(mpc8xxx_spi->queue.next, |
Anton Vorontsov | b9b9af1 | 2009-06-18 16:49:06 -0700 | [diff] [blame] | 414 | struct spi_message, queue); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 415 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 416 | list_del_init(&m->queue); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 417 | spin_unlock_irq(&mpc8xxx_spi->lock); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 418 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 419 | mpc8xxx_spi_do_one_msg(m); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 420 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 421 | spin_lock_irq(&mpc8xxx_spi->lock); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 422 | } |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 423 | spin_unlock_irq(&mpc8xxx_spi->lock); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 426 | static int mpc8xxx_spi_setup(struct spi_device *spi) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 427 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 428 | struct mpc8xxx_spi *mpc8xxx_spi; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 429 | int retval; |
| 430 | u32 hw_mode; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 431 | struct spi_mpc8xxx_cs *cs = spi->controller_state; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 432 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 433 | if (!spi->max_speed_hz) |
| 434 | return -EINVAL; |
| 435 | |
| 436 | if (!cs) { |
| 437 | cs = kzalloc(sizeof *cs, GFP_KERNEL); |
| 438 | if (!cs) |
| 439 | return -ENOMEM; |
| 440 | spi->controller_state = cs; |
| 441 | } |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 442 | mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 443 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 444 | hw_mode = cs->hw_mode; /* Save orginal settings */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 445 | cs->hw_mode = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->mode); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 446 | /* mask out bits we are going to set */ |
| 447 | cs->hw_mode &= ~(SPMODE_CP_BEGIN_EDGECLK | SPMODE_CI_INACTIVEHIGH |
| 448 | | SPMODE_REV | SPMODE_LOOP); |
| 449 | |
| 450 | if (spi->mode & SPI_CPHA) |
| 451 | cs->hw_mode |= SPMODE_CP_BEGIN_EDGECLK; |
| 452 | if (spi->mode & SPI_CPOL) |
| 453 | cs->hw_mode |= SPMODE_CI_INACTIVEHIGH; |
| 454 | if (!(spi->mode & SPI_LSB_FIRST)) |
| 455 | cs->hw_mode |= SPMODE_REV; |
| 456 | if (spi->mode & SPI_LOOP) |
| 457 | cs->hw_mode |= SPMODE_LOOP; |
| 458 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 459 | retval = mpc8xxx_spi_setup_transfer(spi, NULL); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 460 | if (retval < 0) { |
| 461 | cs->hw_mode = hw_mode; /* Restore settings */ |
| 462 | return retval; |
| 463 | } |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 464 | return 0; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 465 | } |
| 466 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 467 | static irqreturn_t mpc8xxx_spi_irq(s32 irq, void *context_data) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 468 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 469 | struct mpc8xxx_spi *mpc8xxx_spi = context_data; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 470 | u32 event; |
| 471 | irqreturn_t ret = IRQ_NONE; |
| 472 | |
| 473 | /* Get interrupt events(tx/rx) */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 474 | event = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 475 | |
| 476 | /* We need handle RX first */ |
| 477 | if (event & SPIE_NE) { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 478 | u32 rx_data = mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->receive); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 479 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 480 | if (mpc8xxx_spi->rx) |
| 481 | mpc8xxx_spi->get_rx(rx_data, mpc8xxx_spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 482 | |
| 483 | ret = IRQ_HANDLED; |
| 484 | } |
| 485 | |
| 486 | if ((event & SPIE_NF) == 0) |
| 487 | /* spin until TX is done */ |
| 488 | while (((event = |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 489 | mpc8xxx_spi_read_reg(&mpc8xxx_spi->base->event)) & |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 490 | SPIE_NF) == 0) |
Anton Vorontsov | 9effb95 | 2009-06-18 16:49:05 -0700 | [diff] [blame] | 491 | cpu_relax(); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 492 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 493 | mpc8xxx_spi->count -= 1; |
| 494 | if (mpc8xxx_spi->count) { |
| 495 | u32 word = mpc8xxx_spi->get_tx(mpc8xxx_spi); |
| 496 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->transmit, word); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 497 | } else { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 498 | complete(&mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 499 | } |
| 500 | |
| 501 | /* Clear the events */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 502 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->event, event); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 503 | |
| 504 | return ret; |
| 505 | } |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 506 | static int mpc8xxx_spi_transfer(struct spi_device *spi, |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 507 | struct spi_message *m) |
| 508 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 509 | struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 510 | unsigned long flags; |
| 511 | |
| 512 | m->actual_length = 0; |
| 513 | m->status = -EINPROGRESS; |
| 514 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 515 | spin_lock_irqsave(&mpc8xxx_spi->lock, flags); |
| 516 | list_add_tail(&m->queue, &mpc8xxx_spi->queue); |
| 517 | queue_work(mpc8xxx_spi->workqueue, &mpc8xxx_spi->work); |
| 518 | spin_unlock_irqrestore(&mpc8xxx_spi->lock, flags); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
| 523 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 524 | static void mpc8xxx_spi_cleanup(struct spi_device *spi) |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 525 | { |
| 526 | kfree(spi->controller_state); |
| 527 | } |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 528 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 529 | static struct spi_master * __devinit |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 530 | mpc8xxx_spi_probe(struct device *dev, struct resource *mem, unsigned int irq) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 531 | { |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 532 | struct fsl_spi_platform_data *pdata = dev->platform_data; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 533 | struct spi_master *master; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 534 | struct mpc8xxx_spi *mpc8xxx_spi; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 535 | u32 regval; |
| 536 | int ret = 0; |
| 537 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 538 | master = spi_alloc_master(dev, sizeof(struct mpc8xxx_spi)); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 539 | if (master == NULL) { |
| 540 | ret = -ENOMEM; |
| 541 | goto err; |
| 542 | } |
| 543 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 544 | dev_set_drvdata(dev, master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 545 | |
David Brownell | e7db06b | 2009-06-17 16:26:04 -0700 | [diff] [blame] | 546 | /* the spi->mode bits understood by this driver: */ |
| 547 | master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH |
| 548 | | SPI_LSB_FIRST | SPI_LOOP; |
| 549 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 550 | master->setup = mpc8xxx_spi_setup; |
| 551 | master->transfer = mpc8xxx_spi_transfer; |
| 552 | master->cleanup = mpc8xxx_spi_cleanup; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 553 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 554 | mpc8xxx_spi = spi_master_get_devdata(master); |
| 555 | mpc8xxx_spi->qe_mode = pdata->qe_mode; |
| 556 | mpc8xxx_spi->get_rx = mpc8xxx_spi_rx_buf_u8; |
| 557 | mpc8xxx_spi->get_tx = mpc8xxx_spi_tx_buf_u8; |
| 558 | mpc8xxx_spi->spibrg = pdata->sysclk; |
Anton Vorontsov | e24a4d1 | 2007-08-10 13:01:01 -0700 | [diff] [blame] | 559 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 560 | mpc8xxx_spi->rx_shift = 0; |
| 561 | mpc8xxx_spi->tx_shift = 0; |
| 562 | if (mpc8xxx_spi->qe_mode) { |
| 563 | mpc8xxx_spi->rx_shift = 16; |
| 564 | mpc8xxx_spi->tx_shift = 24; |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 565 | } |
| 566 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 567 | init_completion(&mpc8xxx_spi->done); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 568 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 569 | mpc8xxx_spi->base = ioremap(mem->start, mem->end - mem->start + 1); |
| 570 | if (mpc8xxx_spi->base == NULL) { |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 571 | ret = -ENOMEM; |
| 572 | goto put_master; |
| 573 | } |
| 574 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 575 | mpc8xxx_spi->irq = irq; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 576 | |
| 577 | /* Register for SPI Interrupt */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 578 | ret = request_irq(mpc8xxx_spi->irq, mpc8xxx_spi_irq, |
| 579 | 0, "mpc8xxx_spi", mpc8xxx_spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 580 | |
| 581 | if (ret != 0) |
| 582 | goto unmap_io; |
| 583 | |
| 584 | master->bus_num = pdata->bus_num; |
| 585 | master->num_chipselect = pdata->max_chipselect; |
| 586 | |
| 587 | /* SPI controller initializations */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 588 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, 0); |
| 589 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mask, 0); |
| 590 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->command, 0); |
| 591 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->event, 0xffffffff); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 592 | |
| 593 | /* Enable SPI interface */ |
| 594 | regval = pdata->initial_spmode | SPMODE_INIT_VAL | SPMODE_ENABLE; |
Joakim Tjernlund | f29ba28 | 2007-07-17 04:04:12 -0700 | [diff] [blame] | 595 | if (pdata->qe_mode) |
| 596 | regval |= SPMODE_OP; |
| 597 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 598 | mpc8xxx_spi_write_reg(&mpc8xxx_spi->base->mode, regval); |
| 599 | spin_lock_init(&mpc8xxx_spi->lock); |
| 600 | init_completion(&mpc8xxx_spi->done); |
| 601 | INIT_WORK(&mpc8xxx_spi->work, mpc8xxx_spi_work); |
| 602 | INIT_LIST_HEAD(&mpc8xxx_spi->queue); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 603 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 604 | mpc8xxx_spi->workqueue = create_singlethread_workqueue( |
Kay Sievers | 6c7377a | 2009-03-24 16:38:21 -0700 | [diff] [blame] | 605 | dev_name(master->dev.parent)); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 606 | if (mpc8xxx_spi->workqueue == NULL) { |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 607 | ret = -EBUSY; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 608 | goto free_irq; |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | ret = spi_register_master(master); |
| 612 | if (ret < 0) |
| 613 | goto unreg_master; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 614 | |
| 615 | printk(KERN_INFO |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 616 | "%s: MPC8xxx SPI Controller driver at 0x%p (irq = %d)\n", |
| 617 | dev_name(dev), mpc8xxx_spi->base, mpc8xxx_spi->irq); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 618 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 619 | return master; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 620 | |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 621 | unreg_master: |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 622 | destroy_workqueue(mpc8xxx_spi->workqueue); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 623 | free_irq: |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 624 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 625 | unmap_io: |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 626 | iounmap(mpc8xxx_spi->base); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 627 | put_master: |
| 628 | spi_master_put(master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 629 | err: |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 630 | return ERR_PTR(ret); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 633 | static int __devexit mpc8xxx_spi_remove(struct device *dev) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 634 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 635 | struct mpc8xxx_spi *mpc8xxx_spi; |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 636 | struct spi_master *master; |
| 637 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 638 | master = dev_get_drvdata(dev); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 639 | mpc8xxx_spi = spi_master_get_devdata(master); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 640 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 641 | flush_workqueue(mpc8xxx_spi->workqueue); |
| 642 | destroy_workqueue(mpc8xxx_spi->workqueue); |
Joakim Tjernlund | c9bfcb3 | 2008-05-12 14:02:30 -0700 | [diff] [blame] | 643 | spi_unregister_master(master); |
| 644 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 645 | free_irq(mpc8xxx_spi->irq, mpc8xxx_spi); |
| 646 | iounmap(mpc8xxx_spi->base); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 651 | struct mpc8xxx_spi_probe_info { |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 652 | struct fsl_spi_platform_data pdata; |
| 653 | int *gpios; |
| 654 | bool *alow_flags; |
| 655 | }; |
| 656 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 657 | static struct mpc8xxx_spi_probe_info * |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 658 | to_of_pinfo(struct fsl_spi_platform_data *pdata) |
| 659 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 660 | return container_of(pdata, struct mpc8xxx_spi_probe_info, pdata); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 661 | } |
| 662 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 663 | static void mpc8xxx_spi_cs_control(struct spi_device *spi, bool on) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 664 | { |
| 665 | struct device *dev = spi->dev.parent; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 666 | struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 667 | u16 cs = spi->chip_select; |
| 668 | int gpio = pinfo->gpios[cs]; |
| 669 | bool alow = pinfo->alow_flags[cs]; |
| 670 | |
| 671 | gpio_set_value(gpio, on ^ alow); |
| 672 | } |
| 673 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 674 | static int of_mpc8xxx_spi_get_chipselects(struct device *dev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 675 | { |
| 676 | struct device_node *np = dev_archdata_get_node(&dev->archdata); |
| 677 | struct fsl_spi_platform_data *pdata = dev->platform_data; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 678 | struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 679 | unsigned int ngpios; |
| 680 | int i = 0; |
| 681 | int ret; |
| 682 | |
| 683 | ngpios = of_gpio_count(np); |
| 684 | if (!ngpios) { |
| 685 | /* |
| 686 | * SPI w/o chip-select line. One SPI device is still permitted |
| 687 | * though. |
| 688 | */ |
| 689 | pdata->max_chipselect = 1; |
| 690 | return 0; |
| 691 | } |
| 692 | |
Roel Kluin | 0214154 | 2009-06-16 15:31:15 -0700 | [diff] [blame] | 693 | pinfo->gpios = kmalloc(ngpios * sizeof(*pinfo->gpios), GFP_KERNEL); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 694 | if (!pinfo->gpios) |
| 695 | return -ENOMEM; |
Roel Kluin | 0214154 | 2009-06-16 15:31:15 -0700 | [diff] [blame] | 696 | memset(pinfo->gpios, -1, ngpios * sizeof(*pinfo->gpios)); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 697 | |
Roel Kluin | 0214154 | 2009-06-16 15:31:15 -0700 | [diff] [blame] | 698 | pinfo->alow_flags = kzalloc(ngpios * sizeof(*pinfo->alow_flags), |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 699 | GFP_KERNEL); |
| 700 | if (!pinfo->alow_flags) { |
| 701 | ret = -ENOMEM; |
| 702 | goto err_alloc_flags; |
| 703 | } |
| 704 | |
| 705 | for (; i < ngpios; i++) { |
| 706 | int gpio; |
| 707 | enum of_gpio_flags flags; |
| 708 | |
| 709 | gpio = of_get_gpio_flags(np, i, &flags); |
| 710 | if (!gpio_is_valid(gpio)) { |
| 711 | dev_err(dev, "invalid gpio #%d: %d\n", i, gpio); |
| 712 | goto err_loop; |
| 713 | } |
| 714 | |
| 715 | ret = gpio_request(gpio, dev_name(dev)); |
| 716 | if (ret) { |
| 717 | dev_err(dev, "can't request gpio #%d: %d\n", i, ret); |
| 718 | goto err_loop; |
| 719 | } |
| 720 | |
| 721 | pinfo->gpios[i] = gpio; |
| 722 | pinfo->alow_flags[i] = flags & OF_GPIO_ACTIVE_LOW; |
| 723 | |
| 724 | ret = gpio_direction_output(pinfo->gpios[i], |
| 725 | pinfo->alow_flags[i]); |
| 726 | if (ret) { |
| 727 | dev_err(dev, "can't set output direction for gpio " |
| 728 | "#%d: %d\n", i, ret); |
| 729 | goto err_loop; |
| 730 | } |
| 731 | } |
| 732 | |
| 733 | pdata->max_chipselect = ngpios; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 734 | pdata->cs_control = mpc8xxx_spi_cs_control; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 735 | |
| 736 | return 0; |
| 737 | |
| 738 | err_loop: |
| 739 | while (i >= 0) { |
| 740 | if (gpio_is_valid(pinfo->gpios[i])) |
| 741 | gpio_free(pinfo->gpios[i]); |
| 742 | i--; |
| 743 | } |
| 744 | |
| 745 | kfree(pinfo->alow_flags); |
| 746 | pinfo->alow_flags = NULL; |
| 747 | err_alloc_flags: |
| 748 | kfree(pinfo->gpios); |
| 749 | pinfo->gpios = NULL; |
| 750 | return ret; |
| 751 | } |
| 752 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 753 | static int of_mpc8xxx_spi_free_chipselects(struct device *dev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 754 | { |
| 755 | struct fsl_spi_platform_data *pdata = dev->platform_data; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 756 | struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(pdata); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 757 | int i; |
| 758 | |
| 759 | if (!pinfo->gpios) |
| 760 | return 0; |
| 761 | |
| 762 | for (i = 0; i < pdata->max_chipselect; i++) { |
| 763 | if (gpio_is_valid(pinfo->gpios[i])) |
| 764 | gpio_free(pinfo->gpios[i]); |
| 765 | } |
| 766 | |
| 767 | kfree(pinfo->gpios); |
| 768 | kfree(pinfo->alow_flags); |
| 769 | return 0; |
| 770 | } |
| 771 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 772 | static int __devinit of_mpc8xxx_spi_probe(struct of_device *ofdev, |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 773 | const struct of_device_id *ofid) |
| 774 | { |
| 775 | struct device *dev = &ofdev->dev; |
| 776 | struct device_node *np = ofdev->node; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 777 | struct mpc8xxx_spi_probe_info *pinfo; |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 778 | struct fsl_spi_platform_data *pdata; |
| 779 | struct spi_master *master; |
| 780 | struct resource mem; |
| 781 | struct resource irq; |
| 782 | const void *prop; |
| 783 | int ret = -ENOMEM; |
| 784 | |
| 785 | pinfo = kzalloc(sizeof(*pinfo), GFP_KERNEL); |
| 786 | if (!pinfo) |
| 787 | return -ENOMEM; |
| 788 | |
| 789 | pdata = &pinfo->pdata; |
| 790 | dev->platform_data = pdata; |
| 791 | |
| 792 | /* Allocate bus num dynamically. */ |
| 793 | pdata->bus_num = -1; |
| 794 | |
| 795 | /* SPI controller is either clocked from QE or SoC clock. */ |
| 796 | pdata->sysclk = get_brgfreq(); |
| 797 | if (pdata->sysclk == -1) { |
| 798 | pdata->sysclk = fsl_get_sys_freq(); |
| 799 | if (pdata->sysclk == -1) { |
| 800 | ret = -ENODEV; |
| 801 | goto err_clk; |
| 802 | } |
| 803 | } |
| 804 | |
| 805 | prop = of_get_property(np, "mode", NULL); |
| 806 | if (prop && !strcmp(prop, "cpu-qe")) |
| 807 | pdata->qe_mode = 1; |
| 808 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 809 | ret = of_mpc8xxx_spi_get_chipselects(dev); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 810 | if (ret) |
| 811 | goto err; |
| 812 | |
| 813 | ret = of_address_to_resource(np, 0, &mem); |
| 814 | if (ret) |
| 815 | goto err; |
| 816 | |
| 817 | ret = of_irq_to_resource(np, 0, &irq); |
| 818 | if (!ret) { |
| 819 | ret = -EINVAL; |
| 820 | goto err; |
| 821 | } |
| 822 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 823 | master = mpc8xxx_spi_probe(dev, &mem, irq.start); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 824 | if (IS_ERR(master)) { |
| 825 | ret = PTR_ERR(master); |
| 826 | goto err; |
| 827 | } |
| 828 | |
| 829 | of_register_spi_devices(master, np); |
| 830 | |
| 831 | return 0; |
| 832 | |
| 833 | err: |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 834 | of_mpc8xxx_spi_free_chipselects(dev); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 835 | err_clk: |
| 836 | kfree(pinfo); |
| 837 | return ret; |
| 838 | } |
| 839 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 840 | static int __devexit of_mpc8xxx_spi_remove(struct of_device *ofdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 841 | { |
| 842 | int ret; |
| 843 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 844 | ret = mpc8xxx_spi_remove(&ofdev->dev); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 845 | if (ret) |
| 846 | return ret; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 847 | of_mpc8xxx_spi_free_chipselects(&ofdev->dev); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 848 | return 0; |
| 849 | } |
| 850 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 851 | static const struct of_device_id of_mpc8xxx_spi_match[] = { |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 852 | { .compatible = "fsl,spi" }, |
| 853 | {}, |
| 854 | }; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 855 | MODULE_DEVICE_TABLE(of, of_mpc8xxx_spi_match); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 856 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 857 | static struct of_platform_driver of_mpc8xxx_spi_driver = { |
| 858 | .name = "mpc8xxx_spi", |
| 859 | .match_table = of_mpc8xxx_spi_match, |
| 860 | .probe = of_mpc8xxx_spi_probe, |
| 861 | .remove = __devexit_p(of_mpc8xxx_spi_remove), |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 862 | }; |
| 863 | |
| 864 | #ifdef CONFIG_MPC832x_RDB |
| 865 | /* |
| 866 | * XXX XXX XXX |
| 867 | * This is "legacy" platform driver, was used by the MPC8323E-RDB boards |
| 868 | * only. The driver should go away soon, since newer MPC8323E-RDB's device |
| 869 | * tree can work with OpenFirmware driver. But for now we support old trees |
| 870 | * as well. |
| 871 | */ |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 872 | static int __devinit plat_mpc8xxx_spi_probe(struct platform_device *pdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 873 | { |
| 874 | struct resource *mem; |
| 875 | unsigned int irq; |
| 876 | struct spi_master *master; |
| 877 | |
| 878 | if (!pdev->dev.platform_data) |
| 879 | return -EINVAL; |
| 880 | |
| 881 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 882 | if (!mem) |
| 883 | return -EINVAL; |
| 884 | |
| 885 | irq = platform_get_irq(pdev, 0); |
| 886 | if (!irq) |
| 887 | return -EINVAL; |
| 888 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 889 | master = mpc8xxx_spi_probe(&pdev->dev, mem, irq); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 890 | if (IS_ERR(master)) |
| 891 | return PTR_ERR(master); |
| 892 | return 0; |
| 893 | } |
| 894 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 895 | static int __devexit plat_mpc8xxx_spi_remove(struct platform_device *pdev) |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 896 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 897 | return mpc8xxx_spi_remove(&pdev->dev); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 898 | } |
| 899 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 900 | MODULE_ALIAS("platform:mpc8xxx_spi"); |
| 901 | static struct platform_driver mpc8xxx_spi_driver = { |
| 902 | .probe = plat_mpc8xxx_spi_probe, |
| 903 | .remove = __exit_p(plat_mpc8xxx_spi_remove), |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 904 | .driver = { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 905 | .name = "mpc8xxx_spi", |
Kay Sievers | 7e38c3c | 2008-04-10 21:29:20 -0700 | [diff] [blame] | 906 | .owner = THIS_MODULE, |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 907 | }, |
| 908 | }; |
| 909 | |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 910 | static bool legacy_driver_failed; |
| 911 | |
| 912 | static void __init legacy_driver_register(void) |
| 913 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 914 | legacy_driver_failed = platform_driver_register(&mpc8xxx_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | static void __exit legacy_driver_unregister(void) |
| 918 | { |
| 919 | if (legacy_driver_failed) |
| 920 | return; |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 921 | platform_driver_unregister(&mpc8xxx_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 922 | } |
| 923 | #else |
| 924 | static void __init legacy_driver_register(void) {} |
| 925 | static void __exit legacy_driver_unregister(void) {} |
| 926 | #endif /* CONFIG_MPC832x_RDB */ |
| 927 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 928 | static int __init mpc8xxx_spi_init(void) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 929 | { |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 930 | legacy_driver_register(); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 931 | return of_register_platform_driver(&of_mpc8xxx_spi_driver); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 932 | } |
| 933 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 934 | static void __exit mpc8xxx_spi_exit(void) |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 935 | { |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 936 | of_unregister_platform_driver(&of_mpc8xxx_spi_driver); |
Anton Vorontsov | 35b4b3c | 2009-03-31 15:24:37 -0700 | [diff] [blame] | 937 | legacy_driver_unregister(); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 938 | } |
| 939 | |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 940 | module_init(mpc8xxx_spi_init); |
| 941 | module_exit(mpc8xxx_spi_exit); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 942 | |
| 943 | MODULE_AUTHOR("Kumar Gala"); |
Anton Vorontsov | 575c580 | 2009-06-18 16:49:08 -0700 | [diff] [blame] | 944 | MODULE_DESCRIPTION("Simple MPC8xxx SPI Driver"); |
Kumar Gala | ccf0699 | 2006-05-20 15:00:15 -0700 | [diff] [blame] | 945 | MODULE_LICENSE("GPL"); |