Merge tag 'sound-fix-4.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[deliverable/linux.git] / drivers / spi / spi-fsl-lib.c
CommitLineData
b36ece83
MH
1/*
2 * Freescale SPI/eSPI controller driver library.
3 *
4 * Maintainer: Kumar Gala
5 *
6 * Copyright (C) 2006 Polycom, Inc.
7 *
8 * CPM SPI and QE buffer descriptors mode support:
9 * Copyright (c) 2009 MontaVista Software, Inc.
10 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11 *
12 * Copyright 2010 Freescale Semiconductor, Inc.
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 */
b36ece83 19#include <linux/dma-mapping.h>
a3108360
XL
20#include <linux/fsl_devices.h>
21#include <linux/interrupt.h>
22#include <linux/kernel.h>
b36ece83 23#include <linux/mm.h>
38455d7a 24#include <linux/module.h>
b36ece83 25#include <linux/of_platform.h>
d57a4282 26#include <linux/spi/spi.h>
e8beacbb 27#ifdef CONFIG_FSL_SOC
b36ece83 28#include <sysdev/fsl_soc.h>
e8beacbb 29#endif
b36ece83 30
ca632f55 31#include "spi-fsl-lib.h"
b36ece83
MH
32
33#define MPC8XXX_SPI_RX_BUF(type) \
34void mpc8xxx_spi_rx_buf_##type(u32 data, struct mpc8xxx_spi *mpc8xxx_spi) \
35{ \
36 type *rx = mpc8xxx_spi->rx; \
37 *rx++ = (type)(data >> mpc8xxx_spi->rx_shift); \
38 mpc8xxx_spi->rx = rx; \
38455d7a
EH
39} \
40EXPORT_SYMBOL_GPL(mpc8xxx_spi_rx_buf_##type);
b36ece83
MH
41
42#define MPC8XXX_SPI_TX_BUF(type) \
43u32 mpc8xxx_spi_tx_buf_##type(struct mpc8xxx_spi *mpc8xxx_spi) \
44{ \
45 u32 data; \
46 const type *tx = mpc8xxx_spi->tx; \
47 if (!tx) \
48 return 0; \
49 data = *tx++ << mpc8xxx_spi->tx_shift; \
50 mpc8xxx_spi->tx = tx; \
51 return data; \
38455d7a
EH
52} \
53EXPORT_SYMBOL_GPL(mpc8xxx_spi_tx_buf_##type);
b36ece83
MH
54
55MPC8XXX_SPI_RX_BUF(u8)
56MPC8XXX_SPI_RX_BUF(u16)
57MPC8XXX_SPI_RX_BUF(u32)
58MPC8XXX_SPI_TX_BUF(u8)
59MPC8XXX_SPI_TX_BUF(u16)
60MPC8XXX_SPI_TX_BUF(u32)
61
62struct mpc8xxx_spi_probe_info *to_of_pinfo(struct fsl_spi_platform_data *pdata)
63{
64 return container_of(pdata, struct mpc8xxx_spi_probe_info, pdata);
65}
38455d7a 66EXPORT_SYMBOL_GPL(to_of_pinfo);
b36ece83 67
b36ece83
MH
68const char *mpc8xxx_spi_strmode(unsigned int flags)
69{
70 if (flags & SPI_QE_CPU_MODE) {
71 return "QE CPU";
72 } else if (flags & SPI_CPM_MODE) {
73 if (flags & SPI_QE)
74 return "QE";
75 else if (flags & SPI_CPM2)
76 return "CPM2";
77 else
78 return "CPM1";
79 }
80 return "CPU";
81}
38455d7a 82EXPORT_SYMBOL_GPL(mpc8xxx_spi_strmode);
b36ece83 83
c592becb 84void mpc8xxx_spi_probe(struct device *dev, struct resource *mem,
b36ece83
MH
85 unsigned int irq)
86{
8074cf06 87 struct fsl_spi_platform_data *pdata = dev_get_platdata(dev);
b36ece83
MH
88 struct spi_master *master;
89 struct mpc8xxx_spi *mpc8xxx_spi;
b36ece83
MH
90
91 master = dev_get_drvdata(dev);
92
93 /* the spi->mode bits understood by this driver: */
94 master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_CS_HIGH
95 | SPI_LSB_FIRST | SPI_LOOP;
96
b36ece83
MH
97 master->dev.of_node = dev->of_node;
98
99 mpc8xxx_spi = spi_master_get_devdata(master);
100 mpc8xxx_spi->dev = dev;
101 mpc8xxx_spi->get_rx = mpc8xxx_spi_rx_buf_u8;
102 mpc8xxx_spi->get_tx = mpc8xxx_spi_tx_buf_u8;
103 mpc8xxx_spi->flags = pdata->flags;
104 mpc8xxx_spi->spibrg = pdata->sysclk;
105 mpc8xxx_spi->irq = irq;
106
107 mpc8xxx_spi->rx_shift = 0;
108 mpc8xxx_spi->tx_shift = 0;
109
b36ece83
MH
110 master->bus_num = pdata->bus_num;
111 master->num_chipselect = pdata->max_chipselect;
112
b36ece83 113 init_completion(&mpc8xxx_spi->done);
b36ece83 114}
38455d7a 115EXPORT_SYMBOL_GPL(mpc8xxx_spi_probe);
b36ece83 116
fd4a319b 117int mpc8xxx_spi_remove(struct device *dev)
b36ece83
MH
118{
119 struct mpc8xxx_spi *mpc8xxx_spi;
120 struct spi_master *master;
121
122 master = dev_get_drvdata(dev);
123 mpc8xxx_spi = spi_master_get_devdata(master);
124
b36ece83
MH
125 spi_unregister_master(master);
126
127 free_irq(mpc8xxx_spi->irq, mpc8xxx_spi);
128
129 if (mpc8xxx_spi->spi_remove)
130 mpc8xxx_spi->spi_remove(mpc8xxx_spi);
131
132 return 0;
133}
38455d7a 134EXPORT_SYMBOL_GPL(mpc8xxx_spi_remove);
b36ece83 135
fd4a319b 136int of_mpc8xxx_spi_probe(struct platform_device *ofdev)
b36ece83
MH
137{
138 struct device *dev = &ofdev->dev;
139 struct device_node *np = ofdev->dev.of_node;
140 struct mpc8xxx_spi_probe_info *pinfo;
141 struct fsl_spi_platform_data *pdata;
142 const void *prop;
143 int ret = -ENOMEM;
144
7282326b 145 pinfo = devm_kzalloc(&ofdev->dev, sizeof(*pinfo), GFP_KERNEL);
b36ece83 146 if (!pinfo)
ef4bbdec 147 return ret;
b36ece83
MH
148
149 pdata = &pinfo->pdata;
150 dev->platform_data = pdata;
151
152 /* Allocate bus num dynamically. */
153 pdata->bus_num = -1;
154
e8beacbb 155#ifdef CONFIG_FSL_SOC
b36ece83
MH
156 /* SPI controller is either clocked from QE or SoC clock. */
157 pdata->sysclk = get_brgfreq();
158 if (pdata->sysclk == -1) {
159 pdata->sysclk = fsl_get_sys_freq();
7282326b
AL
160 if (pdata->sysclk == -1)
161 return -ENODEV;
b36ece83 162 }
e8beacbb
AL
163#else
164 ret = of_property_read_u32(np, "clock-frequency", &pdata->sysclk);
165 if (ret)
7282326b 166 return ret;
e8beacbb 167#endif
b36ece83
MH
168
169 prop = of_get_property(np, "mode", NULL);
170 if (prop && !strcmp(prop, "cpu-qe"))
171 pdata->flags = SPI_QE_CPU_MODE;
172 else if (prop && !strcmp(prop, "qe"))
173 pdata->flags = SPI_CPM_MODE | SPI_QE;
174 else if (of_device_is_compatible(np, "fsl,cpm2-spi"))
175 pdata->flags = SPI_CPM_MODE | SPI_CPM2;
176 else if (of_device_is_compatible(np, "fsl,cpm1-spi"))
177 pdata->flags = SPI_CPM_MODE | SPI_CPM1;
178
179 return 0;
b36ece83 180}
38455d7a
EH
181EXPORT_SYMBOL_GPL(of_mpc8xxx_spi_probe);
182
183MODULE_LICENSE("GPL");
This page took 0.333697 seconds and 5 git commands to generate.