Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
awilliam
GitHub Repository: awilliam/linux-vfio
Path: blob/master/arch/arm/mach-ixp2000/include/mach/enp2611.h
10820 views
1
/*
2
* arch/arm/mach-ixp2000/include/mach/enp2611.h
3
*
4
* Register and other defines for Radisys ENP-2611
5
*
6
* Created 2004 by Lennert Buytenhek from the ixdp2x01 code. The
7
* original version carries the following notices:
8
*
9
* Original Author: Naeem Afzal <[email protected]>
10
* Maintainer: Deepak Saxena <[email protected]>
11
*
12
* Copyright (C) 2002 Intel Corp.
13
* Copyright (C) 2003-2004 MontaVista Software, Inc.
14
*
15
* This program is free software; you can redistribute it and/or modify it
16
* under the terms of the GNU General Public License as published by the
17
* Free Software Foundation; either version 2 of the License, or (at your
18
* option) any later version.
19
*/
20
21
#ifndef __ENP2611_H
22
#define __ENP2611_H
23
24
#define ENP2611_CALEB_PHYS_BASE 0xc5000000
25
#define ENP2611_CALEB_VIRT_BASE 0xfe000000
26
#define ENP2611_CALEB_SIZE 0x00100000
27
28
#define ENP2611_PM3386_0_PHYS_BASE 0xc6000000
29
#define ENP2611_PM3386_0_VIRT_BASE 0xfe100000
30
#define ENP2611_PM3386_0_SIZE 0x00100000
31
32
#define ENP2611_PM3386_1_PHYS_BASE 0xc6400000
33
#define ENP2611_PM3386_1_VIRT_BASE 0xfe200000
34
#define ENP2611_PM3386_1_SIZE 0x00100000
35
36
#define ENP2611_GPIO_SCL 7
37
#define ENP2611_GPIO_SDA 6
38
39
#define IRQ_ENP2611_THERMAL IRQ_IXP2000_GPIO4
40
#define IRQ_ENP2611_OPTION_BOARD IRQ_IXP2000_GPIO3
41
#define IRQ_ENP2611_CALEB IRQ_IXP2000_GPIO2
42
#define IRQ_ENP2611_PM3386_1 IRQ_IXP2000_GPIO1
43
#define IRQ_ENP2611_PM3386_0 IRQ_IXP2000_GPIO0
44
45
46
#endif
47
48