blob: a2359f7e14656d3f62ede2f5b1d3fcefdf58d83c [file] [log] [blame]
Manu Abrahamd8b14f82009-12-04 05:09:47 -03001/*
2 Mantis PCI bridge driver
3
4 Copyright (C) 2005, 2006 Manu Abraham (abraham.manu@gmail.com)
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
21#include "mantis_common.h"
22#include "mantis_hif.h"
23#include "mantis_link.h" /* temporary due to physical layer stuff */
24
25static int mantis_hif_data_available(struct mantis_ca *ca)
26{
27 struct mantis_pci *mantis = ca->ca_priv;
28 int rc = 0;
29
30 if (wait_event_interruptible_timeout(ca->hif_data_wq,
31 ca->sbuf_status & MANTIS_SBUF_DATA_AVAIL,
32 msecs_to_jiffies(500)) == -ERESTARTSYS) {
33
34 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Read wait event timeout !", mantis->num);
35 rc = -EREMOTEIO;
36 }
37 ca->sbuf_status &= ~MANTIS_SBUF_DATA_AVAIL;
38 udelay(2);
39 return rc;
40}
41
42static int mantis_hif_sbuf_opdone_wait(struct mantis_ca *ca)
43{
44 struct mantis_pci *mantis = ca->ca_priv;
45 int rc = 0;
46
Manu Abrahamac8f04d2009-12-04 05:29:25 -030047 if (wait_event_timeout(ca->hif_opdone_wq,
48 ca->hif_event & MANTIS_SBUF_OPDONE,
49 msecs_to_jiffies(500)) == -ERESTARTSYS) {
Manu Abrahamd8b14f82009-12-04 05:09:47 -030050
51 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): Smart buffer operation timeout !", mantis->num);
52 rc = -EREMOTEIO;
53 }
Manu Abraham8b9c3852009-12-04 05:23:38 -030054 dprintk(verbose, MANTIS_DEBUG, 1, "Smart Buffer Operation complete");
Manu Abrahamd8b14f82009-12-04 05:09:47 -030055 ca->hif_event &= ~MANTIS_SBUF_OPDONE;
56 udelay(5);
57 return rc;
58}
59
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -030060
Manu Abrahamd8b14f82009-12-04 05:09:47 -030061int mantis_hif_read_mem(struct mantis_ca *ca, u32 addr)
62{
63 struct mantis_pci *mantis = ca->ca_priv;
64 u32 hif_addr = 0, data, count = 4;
65
Manu Abraham2133ffb2009-12-04 05:12:16 -030066 dprintk(verbose, MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF Mem Read", mantis->num);
Manu Abrahamd8b14f82009-12-04 05:09:47 -030067 hif_addr |= MANTIS_GPIF_HIFRDWRN;
68 hif_addr &= ~MANTIS_GPIF_PCMCIAREG;
69 hif_addr &= ~MANTIS_GPIF_PCMCIAIOM;
70 hif_addr |= addr;
71
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -030072 mmwrite(hif_addr | MANTIS_HIF_STATUS, MANTIS_GPIF_BRADDR);
Manu Abrahamd8b14f82009-12-04 05:09:47 -030073 mmwrite(count, MANTIS_GPIF_BRBYTES);
74
75 udelay(20);
76
Sigmund Augdala0c59062009-12-04 05:13:21 -030077 mmwrite(hif_addr, MANTIS_GPIF_ADDR);
Manu Abrahamd8b14f82009-12-04 05:09:47 -030078 if (mantis_hif_sbuf_opdone_wait(ca) != 0) {
79 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): GPIF Smart Buffer operation failed", mantis->num);
80 return -EREMOTEIO;
81 }
Sigmund Augdala0c59062009-12-04 05:13:21 -030082 data = mmread(MANTIS_GPIF_DIN);
Manu Abraham8b9c3852009-12-04 05:23:38 -030083 dprintk(verbose, MANTIS_DEBUG, 1, "Mem Read: 0x%02x", data);
Manu Abrahamd8b14f82009-12-04 05:09:47 -030084 return (data >> 24) & 0xff;
85}
86
87int mantis_hif_write_mem(struct mantis_ca *ca, u32 addr, u8 data)
88{
89 struct mantis_slot *slot = ca->slot;
90 struct mantis_pci *mantis = ca->ca_priv;
91 u32 hif_addr = 0;
92
Manu Abraham2133ffb2009-12-04 05:12:16 -030093 dprintk(verbose, MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF Mem Write", mantis->num);
Manu Abrahamd8b14f82009-12-04 05:09:47 -030094 hif_addr &= ~MANTIS_GPIF_HIFRDWRN;
95 hif_addr &= ~MANTIS_GPIF_PCMCIAREG;
96 hif_addr &= ~MANTIS_GPIF_PCMCIAIOM;
97 hif_addr |= addr;
98
99 mmwrite(slot->slave_cfg, MANTIS_GPIF_CFGSLA); /* Slot0 alone for now */
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -0300100 mmwrite(hif_addr | MANTIS_HIF_STATUS, MANTIS_GPIF_ADDR);
Sigmund Augdala0c59062009-12-04 05:13:21 -0300101 mmwrite(data, MANTIS_GPIF_DOUT);
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300102
103 if (mantis_hif_sbuf_opdone_wait(ca) != 0) {
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300104 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num);
105 return -EREMOTEIO;
106 }
Manu Abraham8b9c3852009-12-04 05:23:38 -0300107 dprintk(verbose, MANTIS_DEBUG, 1, "Mem Write: (0x%02x to 0x%02x)", data, addr);
108
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300109 return 0;
110}
111
Manu Abraham60532402009-12-04 05:11:14 -0300112int mantis_hif_read_iom(struct mantis_ca *ca, u32 addr)
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300113{
114 struct mantis_pci *mantis = ca->ca_priv;
Manu Abraham60532402009-12-04 05:11:14 -0300115 u32 data, hif_addr = 0;
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300116
Manu Abraham2133ffb2009-12-04 05:12:16 -0300117 dprintk(verbose, MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF I/O Read", mantis->num);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300118 hif_addr &= ~MANTIS_GPIF_PCMCIAREG;
119 hif_addr |= MANTIS_GPIF_HIFRDWRN;
120 hif_addr |= MANTIS_GPIF_PCMCIAIOM;
121 hif_addr |= addr;
122
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -0300123 mmwrite(hif_addr | MANTIS_HIF_STATUS, MANTIS_GPIF_ADDR);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300124
125 if (mantis_hif_sbuf_opdone_wait(ca) != 0) {
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300126 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num);
127 return -EREMOTEIO;
128 }
Sigmund Augdala0c59062009-12-04 05:13:21 -0300129 data = mmread(MANTIS_GPIF_DIN);
Manu Abraham8b9c3852009-12-04 05:23:38 -0300130 dprintk(verbose, MANTIS_DEBUG, 1, "I/O Read: 0x%02x", data);
Manu Abraham8e0d58e2009-12-04 05:22:57 -0300131 udelay(50);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300132
Manu Abraham9c867952009-12-04 05:21:05 -0300133 return (u8) data;
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300134}
135
Manu Abraham60532402009-12-04 05:11:14 -0300136int mantis_hif_write_iom(struct mantis_ca *ca, u32 addr, u8 data)
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300137{
138 struct mantis_pci *mantis = ca->ca_priv;
139 u32 hif_addr = 0;
140
Manu Abraham2133ffb2009-12-04 05:12:16 -0300141 dprintk(verbose, MANTIS_DEBUG, 1, "Adapter(%d) Slot(0): Request HIF I/O Write", mantis->num);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300142 hif_addr &= ~MANTIS_GPIF_PCMCIAREG;
143 hif_addr &= ~MANTIS_GPIF_HIFRDWRN;
144 hif_addr |= MANTIS_GPIF_PCMCIAIOM;
145 hif_addr |= addr;
146
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -0300147 mmwrite(hif_addr | MANTIS_HIF_STATUS, MANTIS_GPIF_ADDR);
Sigmund Augdala0c59062009-12-04 05:13:21 -0300148 mmwrite(data, MANTIS_GPIF_DOUT);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300149
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300150 if (mantis_hif_sbuf_opdone_wait(ca) != 0) {
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300151 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Slot(0): HIF Smart Buffer operation failed", mantis->num);
152 return -EREMOTEIO;
153 }
Manu Abraham8b9c3852009-12-04 05:23:38 -0300154 dprintk(verbose, MANTIS_DEBUG, 1, "I/O Write: (0x%02x to 0x%02x)", data, addr);
Manu Abraham8e0d58e2009-12-04 05:22:57 -0300155 udelay(50);
Manu Abrahamc9a750c2009-12-04 05:10:25 -0300156
157 return 0;
158}
159
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300160int mantis_hif_init(struct mantis_ca *ca)
161{
Manu Abrahamac23f4c2009-12-04 05:15:10 -0300162 struct mantis_slot *slot = ca->slot;
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300163 struct mantis_pci *mantis = ca->ca_priv;
164 u32 irqcfg;
165
Manu Abrahamac23f4c2009-12-04 05:15:10 -0300166 slot[0].slave_cfg = 0x70773028;
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300167 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Initializing Mantis Host Interface", mantis->num);
168 init_waitqueue_head(&ca->hif_data_wq);
169 init_waitqueue_head(&ca->hif_opdone_wq);
170
Manu Abrahamc90d345f2009-12-04 05:27:53 -0300171 irqcfg = mmread(MANTIS_GPIF_IRQCFG);
172 irqcfg = MANTIS_MASK_BRRDY |
173 MANTIS_MASK_WRACK |
174 MANTIS_MASK_EXTIRQ |
175 MANTIS_MASK_WSTO |
176 MANTIS_MASK_OTHERR |
177 MANTIS_MASK_OVFLW;
178
Manu Abrahamd8b14f82009-12-04 05:09:47 -0300179 mmwrite(irqcfg, MANTIS_GPIF_IRQCFG);
180
181 return 0;
182}
183
184void mantis_hif_exit(struct mantis_ca *ca)
185{
186 struct mantis_pci *mantis = ca->ca_priv;
187 u32 irqcfg;
188
189 dprintk(verbose, MANTIS_ERROR, 1, "Adapter(%d) Exiting Mantis Host Interface", mantis->num);
190 irqcfg = mmread(MANTIS_GPIF_IRQCFG);
191 irqcfg &= ~MANTIS_MASK_BRRDY;
192 mmwrite(irqcfg, MANTIS_GPIF_IRQCFG);
193}