GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / misc / ibmasm / lowlevel.h
blob766766523a60868925920272678ecc21a2562791
1 /*
2 * IBM ASM Service Processor Device Driver
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * Copyright (C) IBM Corporation, 2004
20 * Author: Max Asböck <amax@us.ibm.com>
24 /* Condor service processor specific hardware definitions */
26 #ifndef __IBMASM_CONDOR_H__
27 #define __IBMASM_CONDOR_H__
29 #include <asm/io.h>
31 #define VENDORID_IBM 0x1014
32 #define DEVICEID_RSA 0x010F
34 #define GET_MFA_ADDR(x) (x & 0xFFFFFF00)
36 #define MAILBOX_FULL(x) (x & 0x00000001)
38 #define NO_MFAS_AVAILABLE 0xFFFFFFFF
41 #define INBOUND_QUEUE_PORT 0x40 /* contains address of next free MFA */
42 #define OUTBOUND_QUEUE_PORT 0x44 /* contains address of posted MFA */
44 #define SP_INTR_MASK 0x00000008
45 #define UART_INTR_MASK 0x00000010
47 #define INTR_STATUS_REGISTER 0x13A0
48 #define INTR_CONTROL_REGISTER 0x13A4
50 #define SCOUT_COM_A_BASE 0x0000
51 #define SCOUT_COM_B_BASE 0x0100
52 #define SCOUT_COM_C_BASE 0x0200
53 #define SCOUT_COM_D_BASE 0x0300
55 static inline int sp_interrupt_pending(void __iomem *base_address)
57 return SP_INTR_MASK & readl(base_address + INTR_STATUS_REGISTER);
60 static inline int uart_interrupt_pending(void __iomem *base_address)
62 return UART_INTR_MASK & readl(base_address + INTR_STATUS_REGISTER);
65 static inline void ibmasm_enable_interrupts(void __iomem *base_address, int mask)
67 void __iomem *ctrl_reg = base_address + INTR_CONTROL_REGISTER;
68 writel( readl(ctrl_reg) & ~mask, ctrl_reg);
71 static inline void ibmasm_disable_interrupts(void __iomem *base_address, int mask)
73 void __iomem *ctrl_reg = base_address + INTR_CONTROL_REGISTER;
74 writel( readl(ctrl_reg) | mask, ctrl_reg);
77 static inline void enable_sp_interrupts(void __iomem *base_address)
79 ibmasm_enable_interrupts(base_address, SP_INTR_MASK);
82 static inline void disable_sp_interrupts(void __iomem *base_address)
84 ibmasm_disable_interrupts(base_address, SP_INTR_MASK);
87 static inline void enable_uart_interrupts(void __iomem *base_address)
89 ibmasm_enable_interrupts(base_address, UART_INTR_MASK);
92 static inline void disable_uart_interrupts(void __iomem *base_address)
94 ibmasm_disable_interrupts(base_address, UART_INTR_MASK);
97 #define valid_mfa(mfa) ( (mfa) != NO_MFAS_AVAILABLE )
99 static inline u32 get_mfa_outbound(void __iomem *base_address)
101 int retry;
102 u32 mfa;
104 for (retry=0; retry<=10; retry++) {
105 mfa = readl(base_address + OUTBOUND_QUEUE_PORT);
106 if (valid_mfa(mfa))
107 break;
109 return mfa;
112 static inline void set_mfa_outbound(void __iomem *base_address, u32 mfa)
114 writel(mfa, base_address + OUTBOUND_QUEUE_PORT);
117 static inline u32 get_mfa_inbound(void __iomem *base_address)
119 u32 mfa = readl(base_address + INBOUND_QUEUE_PORT);
121 if (MAILBOX_FULL(mfa))
122 return 0;
124 return mfa;
127 static inline void set_mfa_inbound(void __iomem *base_address, u32 mfa)
129 writel(mfa, base_address + INBOUND_QUEUE_PORT);
132 static inline struct i2o_message *get_i2o_message(void __iomem *base_address, u32 mfa)
134 return (struct i2o_message *)(GET_MFA_ADDR(mfa) + base_address);
137 #endif /* __IBMASM_CONDOR_H__ */