Rev 645 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
106 | pj | 1 | /***************************************************************************** |
2 | * Filename: pci6025e.h * |
||
3 | * Author: Ziglioli Marco * |
||
4 | * Date: 15/03/2001 * |
||
5 | * Last update: * |
||
6 | * Description: Header file which contains declaration of structure variables * |
||
7 | * and routines used to interface with PCI6025E * |
||
8 | *----------------------------------------------------------------------------* |
||
9 | * Notes: Based on National C Routines * |
||
10 | *****************************************************************************/ |
||
11 | |||
12 | /* This file is part of the S.Ha.R.K. Project - http://shark.sssup.it |
||
13 | * |
||
14 | * Copyright (C) 2001 Marco Ziglioli |
||
15 | * |
||
16 | * This program is free software; you can redistribute it and/or modify |
||
17 | * it under the terms of the GNU General Public License as published by |
||
18 | * the Free Software Foundation; either version 2 of the License, or |
||
19 | * (at your option) any later version. |
||
20 | * |
||
21 | * This program is distributed in the hope that it will be useful, |
||
22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
24 | * GNU General Public License for more details. |
||
25 | * |
||
26 | * You should have received a copy of the GNU General Public License |
||
27 | * along with this program; if not, write to the Free Software |
||
28 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
29 | * |
||
30 | */ |
||
31 | |||
32 | #ifndef _MY_PCI6025E_ |
||
33 | #define _MY_PCI6025E_ |
||
34 | |||
35 | #include <kernel/kern.h> |
||
36 | #include <ll/i386/hw-instr.h> |
||
37 | |||
38 | #include "regconst.h" |
||
39 | |||
1689 | fabio | 40 | #include <arch/sys/cdefs.h> |
106 | pj | 41 | |
42 | __BEGIN_DECLS |
||
43 | |||
44 | //#define __REG_DEBUG__ //enable this in debug mode to see |
||
45 | //configuration registers value |
||
46 | |||
47 | #define NI_CODE 0x1093 //NI Vendor_ID board code |
||
48 | |||
49 | #define Board_Address STC_Base_Address |
||
50 | |||
51 | #define BAR0 0xE8000L //New address of MITE |
||
52 | #define BAR1 0xEA000L //New address of STC |
||
53 | |||
54 | #define INT_NO NIDevice_info[0].InterruptLevel |
||
55 | |||
56 | struct pci6025e_deviceinfo { |
||
57 | WORD DEVID; |
||
58 | BYTE DevFunction; |
||
59 | BYTE BusNumber; |
||
60 | DWORD BAR0Value; |
||
61 | DWORD IntLineRegValue; |
||
62 | DWORD RevisionID; |
||
63 | BYTE InterruptLevel; |
||
64 | }; |
||
65 | |||
66 | extern struct pci6025e_deviceinfo NIDevice_info[10]; |
||
67 | extern DWORD *IntLinestructptr; |
||
68 | extern DWORD *BAR0structptr; |
||
69 | extern DWORD *RevID; |
||
70 | |||
71 | extern DWORD STC_Base_Address, MITE_Base_Address; |
||
72 | |||
73 | #define set(b,p) b|=(0x01 << p) //set p-th bit of byte b to 1 |
||
74 | #define clr(b,p) b&=~(0x01 << p) //set p-th bit of byte b to 0 |
||
75 | |||
76 | //scan PCI bus to find board and remap it on memory above 1MB |
||
77 | BYTE find_NI_Device(void); |
||
78 | BYTE reMap(void); |
||
79 | |||
80 | //IO Windowed access board registers |
||
81 | void DAQ_STC_Windowed_Mode_Write(WORD reg_addr, WORD value); |
||
82 | WORD DAQ_STC_Windowed_Mode_Read(WORD reg_addr); |
||
83 | |||
84 | //On board clock |
||
85 | BYTE setIntClock(BYTE, BYTE, BYTE); |
||
86 | |||
87 | //PFI programming |
||
88 | void PFIprogramming(WORD); |
||
89 | |||
90 | //Interrupt management |
||
91 | void INT_personalize(BYTE); |
||
92 | void INT_setup(BYTE, BYTE); |
||
93 | |||
94 | //needful macros |
||
95 | #define Immediate_Readb(addr) *((BYTE *)(Board_Address + (addr))) |
||
96 | #define Immediate_Readw(addr) *((WORD *)(Board_Address + (addr))) |
||
97 | #define Immediate_Writeb(addr, val) *((BYTE *)(Board_Address + (addr)))=(val) |
||
98 | #define Immediate_Writew(addr, val) *((WORD *)(Board_Address + (addr)))=(val) |
||
99 | |||
100 | void bitfield(BYTE dim, DWORD value); |
||
101 | void TEST_bitfield(BYTE dim, DWORD value, char *str); |
||
102 | |||
103 | //Software copy of STC general registers |
||
104 | extern WORD joint_reset, interrupt_a_enable, interrupt_a_ack, |
||
105 | interrupt_b_enable, interrupt_b_ack, clock_and_fout; |
||
106 | |||
107 | __END_DECLS |
||
108 | #endif |
||
109 | /*End of File: Pci6025e.h*/ |