]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/spi/s3c24xx.h
Merge branch 'tip/perf/urgent-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[mirror_ubuntu-artful-kernel.git] / include / linux / spi / s3c24xx.h
CommitLineData
f35ef7ca 1/*
7fba5340
BD
2 * Copyright (c) 2006 Simtec Electronics
3 * Ben Dooks <ben@simtec.co.uk>
4 *
5 * S3C2410 - SPI Controller platform_device info
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10*/
11
f35ef7ca
HS
12#ifndef __LINUX_SPI_S3C24XX_H
13#define __LINUX_SPI_S3C24XX_H __FILE__
7fba5340 14
7fba5340 15struct s3c2410_spi_info {
ee9c1fbf 16 int pin_cs; /* simple gpio cs */
d1e77806 17 unsigned int num_cs; /* total chipselects */
cb1d0a7a 18 int bus_num; /* bus number to use. */
7fba5340 19
bec0806c
BD
20 unsigned int use_fiq:1; /* use fiq */
21
cf46b973 22 void (*gpio_setup)(struct s3c2410_spi_info *spi, int enable);
7fba5340
BD
23 void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol);
24};
25
f35ef7ca 26#endif /* __LINUX_SPI_S3C24XX_H */