2 * Copyright (C) 2010 OKI SEMICONDUCTOR CO., LTD.
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; version 2 of the License.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/types.h>
22 #include <linux/uaccess.h>
23 #include <linux/string.h>
24 #include <linux/pci.h>
26 #include <linux/delay.h>
27 #include <linux/mutex.h>
28 #include <linux/if_ether.h>
29 #include <linux/ctype.h>
30 #include <linux/dmi.h>
32 #define PHUB_STATUS 0x00 /* Status Register offset */
33 #define PHUB_CONTROL 0x04 /* Control Register offset */
34 #define PHUB_TIMEOUT 0x05 /* Time out value for Status Register */
35 #define PCH_PHUB_ROM_WRITE_ENABLE 0x01 /* Enabling for writing ROM */
36 #define PCH_PHUB_ROM_WRITE_DISABLE 0x00 /* Disabling for writing ROM */
37 #define PCH_PHUB_MAC_START_ADDR_EG20T 0x14 /* MAC data area start address
39 #define PCH_PHUB_MAC_START_ADDR_ML7223 0x20C /* MAC data area start address
41 #define PCH_PHUB_ROM_START_ADDR_EG20T 0x80 /* ROM data area start address offset
43 #define PCH_PHUB_ROM_START_ADDR_ML7213 0x400 /* ROM data area start address
44 offset(OKI SEMICONDUCTOR ML7213)
46 #define PCH_PHUB_ROM_START_ADDR_ML7223 0x400 /* ROM data area start address
47 offset(OKI SEMICONDUCTOR ML7223)
50 /* MAX number of INT_REDUCE_CONTROL registers */
51 #define MAX_NUM_INT_REDUCE_CONTROL_REG 128
52 #define PCI_DEVICE_ID_PCH1_PHUB 0x8801
53 #define PCH_MINOR_NOS 1
54 #define CLKCFG_CAN_50MHZ 0x12000000
55 #define CLKCFG_CANCLK_MASK 0xFF000000
56 #define CLKCFG_UART_MASK 0xFFFFFF
59 #define CLKCFG_UART_48MHZ (1 << 16)
60 #define CLKCFG_BAUDDIV (2 << 20)
61 #define CLKCFG_PLL2VCO (8 << 9)
62 #define CLKCFG_UARTCLKSEL (1 << 18)
64 /* Macros for ML7213 */
65 #define PCI_VENDOR_ID_ROHM 0x10db
66 #define PCI_DEVICE_ID_ROHM_ML7213_PHUB 0x801A
68 /* Macros for ML7213 */
69 #define PCI_VENDOR_ID_ROHM 0x10db
70 #define PCI_DEVICE_ID_ROHM_ML7213_PHUB 0x801A
72 /* Macros for ML7223 */
73 #define PCI_DEVICE_ID_ROHM_ML7223_mPHUB 0x8012 /* for Bus-m */
74 #define PCI_DEVICE_ID_ROHM_ML7223_nPHUB 0x8002 /* for Bus-n */
76 /* SROM ACCESS Macro */
77 #define PCH_WORD_ADDR_MASK (~((1 << 2) - 1))
79 /* Registers address offset */
80 #define PCH_PHUB_ID_REG 0x0000
81 #define PCH_PHUB_QUEUE_PRI_VAL_REG 0x0004
82 #define PCH_PHUB_RC_QUEUE_MAXSIZE_REG 0x0008
83 #define PCH_PHUB_BRI_QUEUE_MAXSIZE_REG 0x000C
84 #define PCH_PHUB_COMP_RESP_TIMEOUT_REG 0x0010
85 #define PCH_PHUB_BUS_SLAVE_CONTROL_REG 0x0014
86 #define PCH_PHUB_DEADLOCK_AVOID_TYPE_REG 0x0018
87 #define PCH_PHUB_INTPIN_REG_WPERMIT_REG0 0x0020
88 #define PCH_PHUB_INTPIN_REG_WPERMIT_REG1 0x0024
89 #define PCH_PHUB_INTPIN_REG_WPERMIT_REG2 0x0028
90 #define PCH_PHUB_INTPIN_REG_WPERMIT_REG3 0x002C
91 #define PCH_PHUB_INT_REDUCE_CONTROL_REG_BASE 0x0040
92 #define CLKCFG_REG_OFFSET 0x500
94 #define PCH_PHUB_OROM_SIZE 15360
97 * struct pch_phub_reg - PHUB register structure
98 * @phub_id_reg: PHUB_ID register val
99 * @q_pri_val_reg: QUEUE_PRI_VAL register val
100 * @rc_q_maxsize_reg: RC_QUEUE_MAXSIZE register val
101 * @bri_q_maxsize_reg: BRI_QUEUE_MAXSIZE register val
102 * @comp_resp_timeout_reg: COMP_RESP_TIMEOUT register val
103 * @bus_slave_control_reg: BUS_SLAVE_CONTROL_REG register val
104 * @deadlock_avoid_type_reg: DEADLOCK_AVOID_TYPE register val
105 * @intpin_reg_wpermit_reg0: INTPIN_REG_WPERMIT register 0 val
106 * @intpin_reg_wpermit_reg1: INTPIN_REG_WPERMIT register 1 val
107 * @intpin_reg_wpermit_reg2: INTPIN_REG_WPERMIT register 2 val
108 * @intpin_reg_wpermit_reg3: INTPIN_REG_WPERMIT register 3 val
109 * @int_reduce_control_reg: INT_REDUCE_CONTROL registers val
110 * @clkcfg_reg: CLK CFG register val
111 * @pch_phub_base_address: Register base address
112 * @pch_phub_extrom_base_address: external rom base address
113 * @pch_mac_start_address: MAC address area start address
114 * @pch_opt_rom_start_address: Option ROM start address
115 * @ioh_type: Save IOH type
117 struct pch_phub_reg
{
120 u32 rc_q_maxsize_reg
;
121 u32 bri_q_maxsize_reg
;
122 u32 comp_resp_timeout_reg
;
123 u32 bus_slave_control_reg
;
124 u32 deadlock_avoid_type_reg
;
125 u32 intpin_reg_wpermit_reg0
;
126 u32 intpin_reg_wpermit_reg1
;
127 u32 intpin_reg_wpermit_reg2
;
128 u32 intpin_reg_wpermit_reg3
;
129 u32 int_reduce_control_reg
[MAX_NUM_INT_REDUCE_CONTROL_REG
];
131 void __iomem
*pch_phub_base_address
;
132 void __iomem
*pch_phub_extrom_base_address
;
133 u32 pch_mac_start_address
;
134 u32 pch_opt_rom_start_address
;
138 /* SROM SPEC for MAC address assignment offset */
139 static const int pch_phub_mac_offset
[ETH_ALEN
] = {0x3, 0x2, 0x1, 0x0, 0xb, 0xa};
141 static DEFINE_MUTEX(pch_phub_mutex
);
144 * pch_phub_read_modify_write_reg() - Reading modifying and writing register
145 * @reg_addr_offset: Register offset address value.
146 * @data: Writing value.
149 static void pch_phub_read_modify_write_reg(struct pch_phub_reg
*chip
,
150 unsigned int reg_addr_offset
,
151 unsigned int data
, unsigned int mask
)
153 void __iomem
*reg_addr
= chip
->pch_phub_base_address
+ reg_addr_offset
;
154 iowrite32(((ioread32(reg_addr
) & ~mask
)) | data
, reg_addr
);
157 /* pch_phub_save_reg_conf - saves register configuration */
158 static void pch_phub_save_reg_conf(struct pci_dev
*pdev
)
161 struct pch_phub_reg
*chip
= pci_get_drvdata(pdev
);
163 void __iomem
*p
= chip
->pch_phub_base_address
;
165 chip
->phub_id_reg
= ioread32(p
+ PCH_PHUB_ID_REG
);
166 chip
->q_pri_val_reg
= ioread32(p
+ PCH_PHUB_QUEUE_PRI_VAL_REG
);
167 chip
->rc_q_maxsize_reg
= ioread32(p
+ PCH_PHUB_RC_QUEUE_MAXSIZE_REG
);
168 chip
->bri_q_maxsize_reg
= ioread32(p
+ PCH_PHUB_BRI_QUEUE_MAXSIZE_REG
);
169 chip
->comp_resp_timeout_reg
=
170 ioread32(p
+ PCH_PHUB_COMP_RESP_TIMEOUT_REG
);
171 chip
->bus_slave_control_reg
=
172 ioread32(p
+ PCH_PHUB_BUS_SLAVE_CONTROL_REG
);
173 chip
->deadlock_avoid_type_reg
=
174 ioread32(p
+ PCH_PHUB_DEADLOCK_AVOID_TYPE_REG
);
175 chip
->intpin_reg_wpermit_reg0
=
176 ioread32(p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG0
);
177 chip
->intpin_reg_wpermit_reg1
=
178 ioread32(p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG1
);
179 chip
->intpin_reg_wpermit_reg2
=
180 ioread32(p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG2
);
181 chip
->intpin_reg_wpermit_reg3
=
182 ioread32(p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG3
);
183 dev_dbg(&pdev
->dev
, "%s : "
184 "chip->phub_id_reg=%x, "
185 "chip->q_pri_val_reg=%x, "
186 "chip->rc_q_maxsize_reg=%x, "
187 "chip->bri_q_maxsize_reg=%x, "
188 "chip->comp_resp_timeout_reg=%x, "
189 "chip->bus_slave_control_reg=%x, "
190 "chip->deadlock_avoid_type_reg=%x, "
191 "chip->intpin_reg_wpermit_reg0=%x, "
192 "chip->intpin_reg_wpermit_reg1=%x, "
193 "chip->intpin_reg_wpermit_reg2=%x, "
194 "chip->intpin_reg_wpermit_reg3=%x\n", __func__
,
197 chip
->rc_q_maxsize_reg
,
198 chip
->bri_q_maxsize_reg
,
199 chip
->comp_resp_timeout_reg
,
200 chip
->bus_slave_control_reg
,
201 chip
->deadlock_avoid_type_reg
,
202 chip
->intpin_reg_wpermit_reg0
,
203 chip
->intpin_reg_wpermit_reg1
,
204 chip
->intpin_reg_wpermit_reg2
,
205 chip
->intpin_reg_wpermit_reg3
);
206 for (i
= 0; i
< MAX_NUM_INT_REDUCE_CONTROL_REG
; i
++) {
207 chip
->int_reduce_control_reg
[i
] =
208 ioread32(p
+ PCH_PHUB_INT_REDUCE_CONTROL_REG_BASE
+ 4 * i
);
209 dev_dbg(&pdev
->dev
, "%s : "
210 "chip->int_reduce_control_reg[%d]=%x\n",
211 __func__
, i
, chip
->int_reduce_control_reg
[i
]);
213 chip
->clkcfg_reg
= ioread32(p
+ CLKCFG_REG_OFFSET
);
216 /* pch_phub_restore_reg_conf - restore register configuration */
217 static void pch_phub_restore_reg_conf(struct pci_dev
*pdev
)
220 struct pch_phub_reg
*chip
= pci_get_drvdata(pdev
);
222 p
= chip
->pch_phub_base_address
;
224 iowrite32(chip
->phub_id_reg
, p
+ PCH_PHUB_ID_REG
);
225 iowrite32(chip
->q_pri_val_reg
, p
+ PCH_PHUB_QUEUE_PRI_VAL_REG
);
226 iowrite32(chip
->rc_q_maxsize_reg
, p
+ PCH_PHUB_RC_QUEUE_MAXSIZE_REG
);
227 iowrite32(chip
->bri_q_maxsize_reg
, p
+ PCH_PHUB_BRI_QUEUE_MAXSIZE_REG
);
228 iowrite32(chip
->comp_resp_timeout_reg
,
229 p
+ PCH_PHUB_COMP_RESP_TIMEOUT_REG
);
230 iowrite32(chip
->bus_slave_control_reg
,
231 p
+ PCH_PHUB_BUS_SLAVE_CONTROL_REG
);
232 iowrite32(chip
->deadlock_avoid_type_reg
,
233 p
+ PCH_PHUB_DEADLOCK_AVOID_TYPE_REG
);
234 iowrite32(chip
->intpin_reg_wpermit_reg0
,
235 p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG0
);
236 iowrite32(chip
->intpin_reg_wpermit_reg1
,
237 p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG1
);
238 iowrite32(chip
->intpin_reg_wpermit_reg2
,
239 p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG2
);
240 iowrite32(chip
->intpin_reg_wpermit_reg3
,
241 p
+ PCH_PHUB_INTPIN_REG_WPERMIT_REG3
);
242 dev_dbg(&pdev
->dev
, "%s : "
243 "chip->phub_id_reg=%x, "
244 "chip->q_pri_val_reg=%x, "
245 "chip->rc_q_maxsize_reg=%x, "
246 "chip->bri_q_maxsize_reg=%x, "
247 "chip->comp_resp_timeout_reg=%x, "
248 "chip->bus_slave_control_reg=%x, "
249 "chip->deadlock_avoid_type_reg=%x, "
250 "chip->intpin_reg_wpermit_reg0=%x, "
251 "chip->intpin_reg_wpermit_reg1=%x, "
252 "chip->intpin_reg_wpermit_reg2=%x, "
253 "chip->intpin_reg_wpermit_reg3=%x\n", __func__
,
256 chip
->rc_q_maxsize_reg
,
257 chip
->bri_q_maxsize_reg
,
258 chip
->comp_resp_timeout_reg
,
259 chip
->bus_slave_control_reg
,
260 chip
->deadlock_avoid_type_reg
,
261 chip
->intpin_reg_wpermit_reg0
,
262 chip
->intpin_reg_wpermit_reg1
,
263 chip
->intpin_reg_wpermit_reg2
,
264 chip
->intpin_reg_wpermit_reg3
);
265 for (i
= 0; i
< MAX_NUM_INT_REDUCE_CONTROL_REG
; i
++) {
266 iowrite32(chip
->int_reduce_control_reg
[i
],
267 p
+ PCH_PHUB_INT_REDUCE_CONTROL_REG_BASE
+ 4 * i
);
268 dev_dbg(&pdev
->dev
, "%s : "
269 "chip->int_reduce_control_reg[%d]=%x\n",
270 __func__
, i
, chip
->int_reduce_control_reg
[i
]);
273 iowrite32(chip
->clkcfg_reg
, p
+ CLKCFG_REG_OFFSET
);
277 * pch_phub_read_serial_rom() - Reading Serial ROM
278 * @offset_address: Serial ROM offset address to read.
279 * @data: Read buffer for specified Serial ROM value.
281 static void pch_phub_read_serial_rom(struct pch_phub_reg
*chip
,
282 unsigned int offset_address
, u8
*data
)
284 void __iomem
*mem_addr
= chip
->pch_phub_extrom_base_address
+
287 *data
= ioread8(mem_addr
);
291 * pch_phub_write_serial_rom() - Writing Serial ROM
292 * @offset_address: Serial ROM offset address.
293 * @data: Serial ROM value to write.
295 static int pch_phub_write_serial_rom(struct pch_phub_reg
*chip
,
296 unsigned int offset_address
, u8 data
)
298 void __iomem
*mem_addr
= chip
->pch_phub_extrom_base_address
+
299 (offset_address
& PCH_WORD_ADDR_MASK
);
301 unsigned int word_data
;
304 pos
= (offset_address
% 4) * 8;
305 mask
= ~(0xFF << pos
);
307 iowrite32(PCH_PHUB_ROM_WRITE_ENABLE
,
308 chip
->pch_phub_extrom_base_address
+ PHUB_CONTROL
);
310 word_data
= ioread32(mem_addr
);
311 iowrite32((word_data
& mask
) | (u32
)data
<< pos
, mem_addr
);
314 while (ioread8(chip
->pch_phub_extrom_base_address
+
315 PHUB_STATUS
) != 0x00) {
317 if (i
== PHUB_TIMEOUT
)
322 iowrite32(PCH_PHUB_ROM_WRITE_DISABLE
,
323 chip
->pch_phub_extrom_base_address
+ PHUB_CONTROL
);
329 * pch_phub_read_serial_rom_val() - Read Serial ROM value
330 * @offset_address: Serial ROM address offset value.
331 * @data: Serial ROM value to read.
333 static void pch_phub_read_serial_rom_val(struct pch_phub_reg
*chip
,
334 unsigned int offset_address
, u8
*data
)
336 unsigned int mem_addr
;
338 mem_addr
= chip
->pch_mac_start_address
+
339 pch_phub_mac_offset
[offset_address
];
341 pch_phub_read_serial_rom(chip
, mem_addr
, data
);
345 * pch_phub_write_serial_rom_val() - writing Serial ROM value
346 * @offset_address: Serial ROM address offset value.
347 * @data: Serial ROM value.
349 static int pch_phub_write_serial_rom_val(struct pch_phub_reg
*chip
,
350 unsigned int offset_address
, u8 data
)
353 unsigned int mem_addr
;
355 mem_addr
= chip
->pch_mac_start_address
+
356 pch_phub_mac_offset
[offset_address
];
358 retval
= pch_phub_write_serial_rom(chip
, mem_addr
, data
);
363 /* pch_phub_gbe_serial_rom_conf - makes Serial ROM header format configuration
364 * for Gigabit Ethernet MAC address
366 static int pch_phub_gbe_serial_rom_conf(struct pch_phub_reg
*chip
)
370 retval
= pch_phub_write_serial_rom(chip
, 0x0b, 0xbc);
371 retval
|= pch_phub_write_serial_rom(chip
, 0x0a, 0x10);
372 retval
|= pch_phub_write_serial_rom(chip
, 0x09, 0x01);
373 retval
|= pch_phub_write_serial_rom(chip
, 0x08, 0x02);
375 retval
|= pch_phub_write_serial_rom(chip
, 0x0f, 0x00);
376 retval
|= pch_phub_write_serial_rom(chip
, 0x0e, 0x00);
377 retval
|= pch_phub_write_serial_rom(chip
, 0x0d, 0x00);
378 retval
|= pch_phub_write_serial_rom(chip
, 0x0c, 0x80);
380 retval
|= pch_phub_write_serial_rom(chip
, 0x13, 0xbc);
381 retval
|= pch_phub_write_serial_rom(chip
, 0x12, 0x10);
382 retval
|= pch_phub_write_serial_rom(chip
, 0x11, 0x01);
383 retval
|= pch_phub_write_serial_rom(chip
, 0x10, 0x18);
385 retval
|= pch_phub_write_serial_rom(chip
, 0x1b, 0xbc);
386 retval
|= pch_phub_write_serial_rom(chip
, 0x1a, 0x10);
387 retval
|= pch_phub_write_serial_rom(chip
, 0x19, 0x01);
388 retval
|= pch_phub_write_serial_rom(chip
, 0x18, 0x19);
390 retval
|= pch_phub_write_serial_rom(chip
, 0x23, 0xbc);
391 retval
|= pch_phub_write_serial_rom(chip
, 0x22, 0x10);
392 retval
|= pch_phub_write_serial_rom(chip
, 0x21, 0x01);
393 retval
|= pch_phub_write_serial_rom(chip
, 0x20, 0x3a);
395 retval
|= pch_phub_write_serial_rom(chip
, 0x27, 0x01);
396 retval
|= pch_phub_write_serial_rom(chip
, 0x26, 0x00);
397 retval
|= pch_phub_write_serial_rom(chip
, 0x25, 0x00);
398 retval
|= pch_phub_write_serial_rom(chip
, 0x24, 0x00);
403 /* pch_phub_gbe_serial_rom_conf_mp - makes SerialROM header format configuration
404 * for Gigabit Ethernet MAC address
406 static int pch_phub_gbe_serial_rom_conf_mp(struct pch_phub_reg
*chip
)
412 retval
= pch_phub_write_serial_rom(chip
, 0x03 + offset_addr
, 0xbc);
413 retval
|= pch_phub_write_serial_rom(chip
, 0x02 + offset_addr
, 0x00);
414 retval
|= pch_phub_write_serial_rom(chip
, 0x01 + offset_addr
, 0x40);
415 retval
|= pch_phub_write_serial_rom(chip
, 0x00 + offset_addr
, 0x02);
417 retval
|= pch_phub_write_serial_rom(chip
, 0x07 + offset_addr
, 0x00);
418 retval
|= pch_phub_write_serial_rom(chip
, 0x06 + offset_addr
, 0x00);
419 retval
|= pch_phub_write_serial_rom(chip
, 0x05 + offset_addr
, 0x00);
420 retval
|= pch_phub_write_serial_rom(chip
, 0x04 + offset_addr
, 0x80);
422 retval
|= pch_phub_write_serial_rom(chip
, 0x0b + offset_addr
, 0xbc);
423 retval
|= pch_phub_write_serial_rom(chip
, 0x0a + offset_addr
, 0x00);
424 retval
|= pch_phub_write_serial_rom(chip
, 0x09 + offset_addr
, 0x40);
425 retval
|= pch_phub_write_serial_rom(chip
, 0x08 + offset_addr
, 0x18);
427 retval
|= pch_phub_write_serial_rom(chip
, 0x13 + offset_addr
, 0xbc);
428 retval
|= pch_phub_write_serial_rom(chip
, 0x12 + offset_addr
, 0x00);
429 retval
|= pch_phub_write_serial_rom(chip
, 0x11 + offset_addr
, 0x40);
430 retval
|= pch_phub_write_serial_rom(chip
, 0x10 + offset_addr
, 0x19);
432 retval
|= pch_phub_write_serial_rom(chip
, 0x1b + offset_addr
, 0xbc);
433 retval
|= pch_phub_write_serial_rom(chip
, 0x1a + offset_addr
, 0x00);
434 retval
|= pch_phub_write_serial_rom(chip
, 0x19 + offset_addr
, 0x40);
435 retval
|= pch_phub_write_serial_rom(chip
, 0x18 + offset_addr
, 0x3a);
437 retval
|= pch_phub_write_serial_rom(chip
, 0x1f + offset_addr
, 0x01);
438 retval
|= pch_phub_write_serial_rom(chip
, 0x1e + offset_addr
, 0x00);
439 retval
|= pch_phub_write_serial_rom(chip
, 0x1d + offset_addr
, 0x00);
440 retval
|= pch_phub_write_serial_rom(chip
, 0x1c + offset_addr
, 0x00);
446 * pch_phub_read_gbe_mac_addr() - Read Gigabit Ethernet MAC address
447 * @offset_address: Gigabit Ethernet MAC address offset value.
448 * @data: Buffer of the Gigabit Ethernet MAC address value.
450 static void pch_phub_read_gbe_mac_addr(struct pch_phub_reg
*chip
, u8
*data
)
453 for (i
= 0; i
< ETH_ALEN
; i
++)
454 pch_phub_read_serial_rom_val(chip
, i
, &data
[i
]);
458 * pch_phub_write_gbe_mac_addr() - Write MAC address
459 * @offset_address: Gigabit Ethernet MAC address offset value.
460 * @data: Gigabit Ethernet MAC address value.
462 static int pch_phub_write_gbe_mac_addr(struct pch_phub_reg
*chip
, u8
*data
)
467 if (chip
->ioh_type
== 1) /* EG20T */
468 retval
= pch_phub_gbe_serial_rom_conf(chip
);
470 retval
= pch_phub_gbe_serial_rom_conf_mp(chip
);
474 for (i
= 0; i
< ETH_ALEN
; i
++) {
475 retval
= pch_phub_write_serial_rom_val(chip
, i
, data
[i
]);
483 static ssize_t
pch_phub_bin_read(struct file
*filp
, struct kobject
*kobj
,
484 struct bin_attribute
*attr
, char *buf
,
485 loff_t off
, size_t count
)
487 unsigned int rom_signature
;
488 unsigned char rom_length
;
490 unsigned int addr_offset
;
491 unsigned int orom_size
;
495 struct pch_phub_reg
*chip
=
496 dev_get_drvdata(container_of(kobj
, struct device
, kobj
));
498 ret
= mutex_lock_interruptible(&pch_phub_mutex
);
501 goto return_err_nomutex
;
504 /* Get Rom signature */
505 pch_phub_read_serial_rom(chip
, chip
->pch_opt_rom_start_address
,
506 (unsigned char *)&rom_signature
);
507 rom_signature
&= 0xff;
508 pch_phub_read_serial_rom(chip
, chip
->pch_opt_rom_start_address
+ 1,
509 (unsigned char *)&tmp
);
510 rom_signature
|= (tmp
& 0xff) << 8;
511 if (rom_signature
== 0xAA55) {
512 pch_phub_read_serial_rom(chip
,
513 chip
->pch_opt_rom_start_address
+ 2,
515 orom_size
= rom_length
* 512;
516 if (orom_size
< off
) {
520 if (orom_size
< count
) {
525 for (addr_offset
= 0; addr_offset
< count
; addr_offset
++) {
526 pch_phub_read_serial_rom(chip
,
527 chip
->pch_opt_rom_start_address
+ addr_offset
+ off
,
535 mutex_unlock(&pch_phub_mutex
);
539 mutex_unlock(&pch_phub_mutex
);
544 static ssize_t
pch_phub_bin_write(struct file
*filp
, struct kobject
*kobj
,
545 struct bin_attribute
*attr
,
546 char *buf
, loff_t off
, size_t count
)
549 unsigned int addr_offset
;
551 struct pch_phub_reg
*chip
=
552 dev_get_drvdata(container_of(kobj
, struct device
, kobj
));
554 ret
= mutex_lock_interruptible(&pch_phub_mutex
);
558 if (off
> PCH_PHUB_OROM_SIZE
) {
562 if (count
> PCH_PHUB_OROM_SIZE
) {
567 for (addr_offset
= 0; addr_offset
< count
; addr_offset
++) {
568 if (PCH_PHUB_OROM_SIZE
< off
+ addr_offset
)
571 ret
= pch_phub_write_serial_rom(chip
,
572 chip
->pch_opt_rom_start_address
+ addr_offset
+ off
,
581 mutex_unlock(&pch_phub_mutex
);
585 mutex_unlock(&pch_phub_mutex
);
589 static ssize_t
show_pch_mac(struct device
*dev
, struct device_attribute
*attr
,
593 struct pch_phub_reg
*chip
= dev_get_drvdata(dev
);
595 pch_phub_read_gbe_mac_addr(chip
, mac
);
597 return sprintf(buf
, "%02x:%02x:%02x:%02x:%02x:%02x\n",
598 mac
[0], mac
[1], mac
[2], mac
[3], mac
[4], mac
[5]);
601 static ssize_t
store_pch_mac(struct device
*dev
, struct device_attribute
*attr
,
602 const char *buf
, size_t count
)
605 struct pch_phub_reg
*chip
= dev_get_drvdata(dev
);
610 sscanf(buf
, "%02x:%02x:%02x:%02x:%02x:%02x",
611 (u32
*)&mac
[0], (u32
*)&mac
[1], (u32
*)&mac
[2], (u32
*)&mac
[3],
612 (u32
*)&mac
[4], (u32
*)&mac
[5]);
614 pch_phub_write_gbe_mac_addr(chip
, mac
);
619 static DEVICE_ATTR(pch_mac
, S_IRUGO
| S_IWUSR
, show_pch_mac
, store_pch_mac
);
621 static struct bin_attribute pch_bin_attr
= {
623 .name
= "pch_firmware",
624 .mode
= S_IRUGO
| S_IWUSR
,
626 .size
= PCH_PHUB_OROM_SIZE
+ 1,
627 .read
= pch_phub_bin_read
,
628 .write
= pch_phub_bin_write
,
631 static int __devinit
pch_phub_probe(struct pci_dev
*pdev
,
632 const struct pci_device_id
*id
)
638 struct pch_phub_reg
*chip
;
640 chip
= kzalloc(sizeof(struct pch_phub_reg
), GFP_KERNEL
);
644 ret
= pci_enable_device(pdev
);
647 "%s : pci_enable_device FAILED(ret=%d)", __func__
, ret
);
648 goto err_pci_enable_dev
;
650 dev_dbg(&pdev
->dev
, "%s : pci_enable_device returns %d\n", __func__
,
653 ret
= pci_request_regions(pdev
, KBUILD_MODNAME
);
656 "%s : pci_request_regions FAILED(ret=%d)", __func__
, ret
);
657 goto err_req_regions
;
659 dev_dbg(&pdev
->dev
, "%s : "
660 "pci_request_regions returns %d\n", __func__
, ret
);
662 chip
->pch_phub_base_address
= pci_iomap(pdev
, 1, 0);
665 if (chip
->pch_phub_base_address
== 0) {
666 dev_err(&pdev
->dev
, "%s : pci_iomap FAILED", __func__
);
670 dev_dbg(&pdev
->dev
, "%s : pci_iomap SUCCESS and value "
671 "in pch_phub_base_address variable is %p\n", __func__
,
672 chip
->pch_phub_base_address
);
674 if (id
->driver_data
!= 3) {
675 chip
->pch_phub_extrom_base_address
=\
676 pci_map_rom(pdev
, &rom_size
);
677 if (chip
->pch_phub_extrom_base_address
== 0) {
678 dev_err(&pdev
->dev
, "%s: pci_map_rom FAILED", __func__
);
682 dev_dbg(&pdev
->dev
, "%s : "
683 "pci_map_rom SUCCESS and value in "
684 "pch_phub_extrom_base_address variable is %p\n",
685 __func__
, chip
->pch_phub_extrom_base_address
);
688 if (id
->driver_data
== 1) { /* EG20T PCH */
689 const char *board_name
;
691 retval
= sysfs_create_file(&pdev
->dev
.kobj
,
692 &dev_attr_pch_mac
.attr
);
694 goto err_sysfs_create
;
696 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, &pch_bin_attr
);
700 pch_phub_read_modify_write_reg(chip
,
701 (unsigned int)CLKCFG_REG_OFFSET
,
705 /* quirk for CM-iTC board */
706 board_name
= dmi_get_system_info(DMI_BOARD_NAME
);
707 if (board_name
&& strstr(board_name
, "CM-iTC"))
708 pch_phub_read_modify_write_reg(chip
,
709 (unsigned int)CLKCFG_REG_OFFSET
,
710 CLKCFG_UART_48MHZ
| CLKCFG_BAUDDIV
|
711 CLKCFG_PLL2VCO
| CLKCFG_UARTCLKSEL
,
714 /* set the prefech value */
715 iowrite32(0x000affaa, chip
->pch_phub_base_address
+ 0x14);
716 /* set the interrupt delay value */
717 iowrite32(0x25, chip
->pch_phub_base_address
+ 0x44);
718 chip
->pch_opt_rom_start_address
= PCH_PHUB_ROM_START_ADDR_EG20T
;
719 chip
->pch_mac_start_address
= PCH_PHUB_MAC_START_ADDR_EG20T
;
720 } else if (id
->driver_data
== 2) { /* ML7213 IOH */
721 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, &pch_bin_attr
);
723 goto err_sysfs_create
;
724 /* set the prefech value
725 * Device2(USB OHCI #1/ USB EHCI #1/ USB Device):a
726 * Device4(SDIO #0,1,2):f
728 * Device8(USB OHCI #0/ USB EHCI #0):a
730 iowrite32(0x000affa0, chip
->pch_phub_base_address
+ 0x14);
731 chip
->pch_opt_rom_start_address
=\
732 PCH_PHUB_ROM_START_ADDR_ML7213
;
733 } else if (id
->driver_data
== 3) { /* ML7223 IOH Bus-m*/
734 /* set the prefech value
737 iowrite32(0x000a0000, chip
->pch_phub_base_address
+ 0x14);
738 /* set the interrupt delay value */
739 iowrite32(0x25, chip
->pch_phub_base_address
+ 0x140);
740 chip
->pch_opt_rom_start_address
=\
741 PCH_PHUB_ROM_START_ADDR_ML7223
;
742 chip
->pch_mac_start_address
= PCH_PHUB_MAC_START_ADDR_ML7223
;
743 } else if (id
->driver_data
== 4) { /* ML7223 IOH Bus-n*/
744 retval
= sysfs_create_file(&pdev
->dev
.kobj
,
745 &dev_attr_pch_mac
.attr
);
747 goto err_sysfs_create
;
748 retval
= sysfs_create_bin_file(&pdev
->dev
.kobj
, &pch_bin_attr
);
751 /* set the prefech value
752 * Device2(USB OHCI #0,1,2,3/ USB EHCI #0):a
753 * Device4(SDIO #0,1):f
756 iowrite32(0x0000ffa0, chip
->pch_phub_base_address
+ 0x14);
757 chip
->pch_opt_rom_start_address
=\
758 PCH_PHUB_ROM_START_ADDR_ML7223
;
759 chip
->pch_mac_start_address
= PCH_PHUB_MAC_START_ADDR_ML7223
;
762 chip
->ioh_type
= id
->driver_data
;
763 pci_set_drvdata(pdev
, chip
);
767 sysfs_remove_file(&pdev
->dev
.kobj
, &dev_attr_pch_mac
.attr
);
770 pci_unmap_rom(pdev
, chip
->pch_phub_extrom_base_address
);
772 pci_iounmap(pdev
, chip
->pch_phub_base_address
);
774 pci_release_regions(pdev
);
776 pci_disable_device(pdev
);
779 dev_err(&pdev
->dev
, "%s returns %d\n", __func__
, ret
);
783 static void __devexit
pch_phub_remove(struct pci_dev
*pdev
)
785 struct pch_phub_reg
*chip
= pci_get_drvdata(pdev
);
787 sysfs_remove_file(&pdev
->dev
.kobj
, &dev_attr_pch_mac
.attr
);
788 sysfs_remove_bin_file(&pdev
->dev
.kobj
, &pch_bin_attr
);
789 pci_unmap_rom(pdev
, chip
->pch_phub_extrom_base_address
);
790 pci_iounmap(pdev
, chip
->pch_phub_base_address
);
791 pci_release_regions(pdev
);
792 pci_disable_device(pdev
);
798 static int pch_phub_suspend(struct pci_dev
*pdev
, pm_message_t state
)
802 pch_phub_save_reg_conf(pdev
);
803 ret
= pci_save_state(pdev
);
806 " %s -pci_save_state returns %d\n", __func__
, ret
);
809 pci_enable_wake(pdev
, PCI_D3hot
, 0);
810 pci_disable_device(pdev
);
811 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
816 static int pch_phub_resume(struct pci_dev
*pdev
)
820 pci_set_power_state(pdev
, PCI_D0
);
821 pci_restore_state(pdev
);
822 ret
= pci_enable_device(pdev
);
825 "%s-pci_enable_device failed(ret=%d) ", __func__
, ret
);
829 pci_enable_wake(pdev
, PCI_D3hot
, 0);
830 pch_phub_restore_reg_conf(pdev
);
835 #define pch_phub_suspend NULL
836 #define pch_phub_resume NULL
837 #endif /* CONFIG_PM */
839 static struct pci_device_id pch_phub_pcidev_id
[] = {
840 { PCI_VDEVICE(INTEL
, PCI_DEVICE_ID_PCH1_PHUB
), 1, },
841 { PCI_VDEVICE(ROHM
, PCI_DEVICE_ID_ROHM_ML7213_PHUB
), 2, },
842 { PCI_VDEVICE(ROHM
, PCI_DEVICE_ID_ROHM_ML7223_mPHUB
), 3, },
843 { PCI_VDEVICE(ROHM
, PCI_DEVICE_ID_ROHM_ML7223_nPHUB
), 4, },
846 MODULE_DEVICE_TABLE(pci
, pch_phub_pcidev_id
);
848 static struct pci_driver pch_phub_driver
= {
850 .id_table
= pch_phub_pcidev_id
,
851 .probe
= pch_phub_probe
,
852 .remove
= __devexit_p(pch_phub_remove
),
853 .suspend
= pch_phub_suspend
,
854 .resume
= pch_phub_resume
857 static int __init
pch_phub_pci_init(void)
859 return pci_register_driver(&pch_phub_driver
);
862 static void __exit
pch_phub_pci_exit(void)
864 pci_unregister_driver(&pch_phub_driver
);
867 module_init(pch_phub_pci_init
);
868 module_exit(pch_phub_pci_exit
);
870 MODULE_DESCRIPTION("Intel EG20T PCH/OKI SEMICONDUCTOR IOH(ML7213/ML7223) PHUB");
871 MODULE_LICENSE("GPL");