blob: 08e1958e9410e40c7078fc0fd10d5cafae9ee06c [file] [log] [blame]
Jan Nikitenko63bd2352007-05-08 00:32:25 -07001/*
Sergei Shtylyovff6814d2008-04-30 23:18:35 +04002 * au1550_spi.h - Au1550 PSC SPI controller driver - platform data structure
Jan Nikitenko63bd2352007-05-08 00:32:25 -07003 */
4
5#ifndef _AU1550_SPI_H_
6#define _AU1550_SPI_H_
7
8struct au1550_spi_info {
Jan Nikitenko63bd2352007-05-08 00:32:25 -07009 u32 mainclk_hz; /* main input clock frequency of PSC */
10 u16 num_chipselect; /* number of chipselects supported */
11 void (*activate_cs)(struct au1550_spi_info *spi, int cs, int polarity);
12 void (*deactivate_cs)(struct au1550_spi_info *spi, int cs, int polarity);
13};
14
15#endif