2012-01-31 19:06:07 +08:00
|
|
|
/*
|
2006-05-21 06:00:18 +08:00
|
|
|
* Copyright (c) 2006 Simtec Electronics
|
|
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
|
|
*
|
|
|
|
* S3C2410 - SPI Controller platform_device info
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2012-01-31 19:06:07 +08:00
|
|
|
#ifndef __LINUX_SPI_S3C24XX_H
|
|
|
|
#define __LINUX_SPI_S3C24XX_H __FILE__
|
2006-05-21 06:00:18 +08:00
|
|
|
|
|
|
|
struct s3c2410_spi_info {
|
2009-01-07 06:41:44 +08:00
|
|
|
int pin_cs; /* simple gpio cs */
|
2008-04-16 05:34:46 +08:00
|
|
|
unsigned int num_cs; /* total chipselects */
|
2008-07-29 06:46:33 +08:00
|
|
|
int bus_num; /* bus number to use. */
|
2006-05-21 06:00:18 +08:00
|
|
|
|
2009-12-15 14:20:24 +08:00
|
|
|
unsigned int use_fiq:1; /* use fiq */
|
|
|
|
|
2008-10-16 13:02:41 +08:00
|
|
|
void (*gpio_setup)(struct s3c2410_spi_info *spi, int enable);
|
2006-05-21 06:00:18 +08:00
|
|
|
void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol);
|
|
|
|
};
|
|
|
|
|
2013-12-31 16:30:39 +08:00
|
|
|
extern int s3c24xx_set_fiq(unsigned int irq, bool on);
|
|
|
|
|
2012-01-31 19:06:07 +08:00
|
|
|
#endif /* __LINUX_SPI_S3C24XX_H */
|