summaryrefslogtreecommitdiff
path: root/drivers/spi/spi_stmp.h
blob: aef6fac2747e7edfef1454bf610bd1ba9e580a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * Freescale STMP378X SPI master driver
 *
 * Author: dmitry pervushin <dimka@embeddedalley.com>
 *
 * Copyright 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved.
 * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
 */

/*
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */
#ifndef __SPI_STMP_H
#define __SPI_STMP_H

/* These two come from arch/arm/mach-xxxxx/spi.c */
int stmp37xx_spi_pins_request(char *id, int ssp);
void stmp37xx_spi_pins_release(char *id, int ssp);

struct stmp_spi {
	int		id;

	u32		regs;	/* vaddr of the control registers */

	u32		irq;
	u32		dma;
	struct stmp3xxx_dma_descriptor d;

	u32		speed_khz;
	u32		saved_timings;
	u32		divider;

	struct clk	*clk;
	struct device	*master_dev;

	struct work_struct work;
	struct workqueue_struct *workqueue;
	spinlock_t lock;
	struct list_head queue;

	struct completion done;
};

#endif /* __SPI_STMP_H */