2012-01-31 12:06:07 +01:00
|
|
|
/*
|
2006-05-21 00:00:18 +02: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 12:06:07 +01:00
|
|
|
#ifndef __LINUX_SPI_S3C24XX_H
|
|
|
|
#define __LINUX_SPI_S3C24XX_H __FILE__
|
2006-05-21 00:00:18 +02:00
|
|
|
|
|
|
|
struct s3c2410_spi_info {
|
2009-01-06 23:41:44 +01:00
|
|
|
int pin_cs; /* simple gpio cs */
|
2008-04-15 23:34:46 +02:00
|
|
|
unsigned int num_cs; /* total chipselects */
|
2008-07-29 00:46:33 +02:00
|
|
|
int bus_num; /* bus number to use. */
|
2006-05-21 00:00:18 +02:00
|
|
|
|
2009-12-15 07:20:24 +01:00
|
|
|
unsigned int use_fiq:1; /* use fiq */
|
|
|
|
|
2008-10-16 07:02:41 +02:00
|
|
|
void (*gpio_setup)(struct s3c2410_spi_info *spi, int enable);
|
2006-05-21 00:00:18 +02:00
|
|
|
void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol);
|
|
|
|
};
|
|
|
|
|
2012-01-31 12:06:07 +01:00
|
|
|
#endif /* __LINUX_SPI_S3C24XX_H */
|