blob: 51240e6d62569526275614075ee0195243099f31 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Nobuhiro Iwamatsu0d53a472008-08-31 22:45:08 +09002/*
3 * Copyright (C) 2008 Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Nobuhiro Iwamatsu0d53a472008-08-31 22:45:08 +09004 */
5
6#define PCIREG_8(_adr) (*(volatile unsigned char *)(_adr))
7#define PCIREG_32(_adr) (*(volatile unsigned long *)(_adr))
8#define PCI_PAR PCIREG_32(0xfe0401c0)
9#define PCI_PDR PCIREG_32(0xfe040220)
10#define PCI_CR PCIREG_32(0xfe040100)
11#define PCI_CONF1 PCIREG_32(0xfe040004)
12
13#define HIGH 1
14#define LOW 0
15
16#define PCI_PROG 0x80
17#define PCI_EEP_ADDRESS (unsigned short)0x0007
18#define PCI_MAC_ADDRESS_SIZE 3
19
20#define TIME1 100
21#define TIME2 20000
22
23#define BIT_DUMMY 0
24#define MAC_EEP_READ 1
25#define MAC_EEP_WRITE 2
26#define MAC_EEP_ERACE 3
27#define MAC_EEP_EWEN 4
28#define MAC_EEP_EWDS 5
29
30/* RTL8169 */
31const unsigned short EEPROM_W_Data_8169_A[] = {
32 0x8129, 0x10ec, 0x8169, 0x1154, 0x032b,
33 0x4020, 0xa101
34};
35const unsigned short EEPROM_W_Data_8169_B[] = {
36 0x4d15, 0xf7c2, 0x8000, 0x0000, 0x0000, 0x1300,
37 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
38 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2000,
39 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
40 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
41 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
42 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000
43};