Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-arm / arch-pxa / ssp.h
blob6ec67b018c09d20928da60610111a447f65adb26
1 /*
2 * ssp.h
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This driver supports the following PXA CPU/SSP ports:-
12 * PXA250 SSP
13 * PXA255 SSP, NSSP
14 * PXA26x SSP, NSSP, ASSP
15 * PXA27x SSP1, SSP2, SSP3
18 #ifndef SSP_H
19 #define SSP_H
21 struct ssp_state {
22 u32 cr0;
23 u32 cr1;
24 u32 to;
25 u32 psp;
28 struct ssp_dev {
29 u32 port;
30 u32 mode;
31 u32 flags;
32 u32 psp_flags;
33 u32 speed;
36 int ssp_write_word(struct ssp_dev *dev, u32 data);
37 int ssp_read_word(struct ssp_dev *dev);
38 void ssp_flush(struct ssp_dev *dev);
39 void ssp_enable(struct ssp_dev *dev);
40 void ssp_disable(struct ssp_dev *dev);
41 void ssp_save_state(struct ssp_dev *dev, struct ssp_state *ssp);
42 void ssp_restore_state(struct ssp_dev *dev, struct ssp_state *ssp);
43 int ssp_init(struct ssp_dev *dev, u32 port);
44 int ssp_config(struct ssp_dev *dev, u32 mode, u32 flags, u32 psp_flags, u32 speed);
45 void ssp_exit(struct ssp_dev *dev);
47 #endif