RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / mips / include / asm / mach-loongson / cs5536 / cs5536_vsm.h
blob21c4ecedebe78013adf8c56f1eea989eaa2cecd6
1 /*
2 * the read/write interfaces for Virtual Support Module(VSM)
4 * Copyright (C) 2009 Lemote, Inc.
5 * Author: Wu Zhangjin <wuzhangjin@gmail.com>
6 */
8 #ifndef _CS5536_VSM_H
9 #define _CS5536_VSM_H
11 #include <linux/types.h>
13 typedef void (*cs5536_pci_vsm_write)(int reg, u32 value);
14 typedef u32 (*cs5536_pci_vsm_read)(int reg);
16 #define DECLARE_CS5536_MODULE(name) \
17 extern void pci_##name##_write_reg(int reg, u32 value); \
18 extern u32 pci_##name##_read_reg(int reg);
20 /* ide module */
21 DECLARE_CS5536_MODULE(ide)
22 /* acc module */
23 DECLARE_CS5536_MODULE(acc)
24 /* ohci module */
25 DECLARE_CS5536_MODULE(ohci)
26 /* isa module */
27 DECLARE_CS5536_MODULE(isa)
28 /* ehci module */
29 DECLARE_CS5536_MODULE(ehci)
31 #endif /* _CS5536_VSM_H */