octeon_smi.c revision 1.4 1 /* $NetBSD: octeon_smi.c,v 1.4 2020/06/18 13:52:08 simonb Exp $ */
2
3 /*
4 * Copyright (c) 2007 Internet Initiative Japan, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: octeon_smi.c,v 1.4 2020/06/18 13:52:08 simonb Exp $");
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/malloc.h>
35 #include <sys/mbuf.h>
36 #include <mips/locore.h>
37 #include <mips/cavium/octeonvar.h>
38 #include <mips/cavium/dev/octeon_fpareg.h>
39 #include <mips/cavium/dev/octeon_fpavar.h>
40 #include <mips/cavium/dev/octeon_pipreg.h>
41 #include <mips/cavium/dev/octeon_smireg.h>
42 #include <mips/cavium/dev/octeon_smivar.h>
43
44 static void octsmi_enable(struct octsmi_softc *);
45
46 /* XXX */
47 void
48 octsmi_init(struct octsmi_attach_args *aa, struct octsmi_softc **rsc)
49 {
50 struct octsmi_softc *sc;
51 int status;
52
53 sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK | M_ZERO);
54 if (sc == NULL)
55 panic("can't allocate memory: %s", __func__);
56
57 sc->sc_port = aa->aa_port;
58 sc->sc_regt = aa->aa_regt;
59
60 status = bus_space_map(sc->sc_regt, SMI_BASE, SMI_SIZE, 0,
61 &sc->sc_regh);
62 if (status != 0)
63 panic("can't map %s space", "smi register");
64
65 octsmi_enable(sc);
66
67 *rsc = sc;
68 }
69
70 #define _SMI_RD8(sc, off) \
71 bus_space_read_8((sc)->sc_regt, (sc)->sc_regh, (off))
72 #define _SMI_WR8(sc, off, v) \
73 bus_space_write_8((sc)->sc_regt, (sc)->sc_regh, (off), (v))
74
75 int
76 octsmi_read(struct octsmi_softc *sc, int phy_addr, int reg, uint16_t *val)
77 {
78 uint64_t smi_rd;
79 int timo;
80
81 _SMI_WR8(sc, SMI_CMD_OFFSET,
82 __SHIFTIN(SMI_CMD_PHY_OP_READ, SMI_CMD_PHY_OP) |
83 __SHIFTIN(phy_addr, SMI_CMD_PHY_ADR) |
84 __SHIFTIN(reg, SMI_CMD_REG_ADR));
85
86 timo = 10000;
87 smi_rd = _SMI_RD8(sc, SMI_RD_DAT_OFFSET);
88 while (ISSET(smi_rd, SMI_RD_DAT_PENDING)) {
89 if (timo-- == 0)
90 return ETIMEDOUT;
91 delay(10);
92 smi_rd = _SMI_RD8(sc, SMI_RD_DAT_OFFSET);
93 }
94
95 if (ISSET(smi_rd, SMI_RD_DAT_VAL)) {
96 *val = (smi_rd & SMI_RD_DAT_DAT);
97 return 0;
98 }
99
100 return -1;
101 }
102
103 int
104 octsmi_write(struct octsmi_softc *sc, int phy_addr, int reg, uint16_t value)
105 {
106 uint64_t smi_wr;
107 int timo;
108
109 smi_wr = 0;
110 SET(smi_wr, value);
111 _SMI_WR8(sc, SMI_WR_DAT_OFFSET, smi_wr);
112
113 _SMI_WR8(sc, SMI_CMD_OFFSET,
114 __SHIFTIN(SMI_CMD_PHY_OP_WRITE, SMI_CMD_PHY_OP) |
115 __SHIFTIN(phy_addr, SMI_CMD_PHY_ADR) |
116 __SHIFTIN(reg, SMI_CMD_REG_ADR));
117
118 timo = 10000;
119 smi_wr = _SMI_RD8(sc, SMI_WR_DAT_OFFSET);
120 while (ISSET(smi_wr, SMI_WR_DAT_PENDING)) {
121 if (timo-- == 0) {
122 /* XXX log */
123 printf("ERROR: cnmac_mii_writereg(0x%x, 0x%x, 0x%hx) "
124 "timed out.\n", phy_addr, reg, value);
125 return ETIMEDOUT;
126 }
127 delay(10);
128 smi_wr = _SMI_RD8(sc, SMI_WR_DAT_OFFSET);
129 }
130
131 return 0;
132 }
133
134 static void
135 octsmi_enable(struct octsmi_softc *sc)
136 {
137 _SMI_WR8(sc, SMI_EN_OFFSET, SMI_EN_EN);
138 }
139
140 void
141 octsmi_set_clock(struct octsmi_softc *sc, uint64_t clock)
142 {
143 _SMI_WR8(sc, SMI_CLK_OFFSET, clock);
144 }
145
146