]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - drivers/net/dsa/mv88e6xxx/phy.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[mirror_ubuntu-eoan-kernel.git] / drivers / net / dsa / mv88e6xxx / phy.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
10fa5bfc
AL
2/*
3 * Marvell 88e6xxx Ethernet switch PHY and PPU support
4 *
5 * Copyright (c) 2008 Marvell Semiconductor
6 *
7 * Copyright (c) 2017 Andrew Lunn <andrew@lunn.ch>
10fa5bfc
AL
8 */
9
10#include <linux/mdio.h>
11#include <linux/module.h>
10fa5bfc 12
4d5f2ba7 13#include "chip.h"
10fa5bfc
AL
14#include "phy.h"
15
16int mv88e6165_phy_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
17 int addr, int reg, u16 *val)
18{
19 return mv88e6xxx_read(chip, addr, reg, val);
20}
21
22int mv88e6165_phy_write(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
23 int addr, int reg, u16 val)
24{
25 return mv88e6xxx_write(chip, addr, reg, val);
26}
27
28int mv88e6xxx_phy_read(struct mv88e6xxx_chip *chip, int phy, int reg, u16 *val)
29{
30 int addr = phy; /* PHY devices addresses start at 0x0 */
31 struct mii_bus *bus;
32
33 bus = mv88e6xxx_default_mdio_bus(chip);
34 if (!bus)
35 return -EOPNOTSUPP;
36
37 if (!chip->info->ops->phy_read)
38 return -EOPNOTSUPP;
39
40 return chip->info->ops->phy_read(chip, bus, addr, reg, val);
41}
42
43int mv88e6xxx_phy_write(struct mv88e6xxx_chip *chip, int phy, int reg, u16 val)
44{
45 int addr = phy; /* PHY devices addresses start at 0x0 */
46 struct mii_bus *bus;
47
48 bus = mv88e6xxx_default_mdio_bus(chip);
49 if (!bus)
50 return -EOPNOTSUPP;
51
52 if (!chip->info->ops->phy_write)
53 return -EOPNOTSUPP;
54
55 return chip->info->ops->phy_write(chip, bus, addr, reg, val);
56}
57
58static int mv88e6xxx_phy_page_get(struct mv88e6xxx_chip *chip, int phy, u8 page)
59{
bec90b6d 60 return mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
10fa5bfc
AL
61}
62
63static void mv88e6xxx_phy_page_put(struct mv88e6xxx_chip *chip, int phy)
64{
65 int err;
66
67 /* Restore PHY page Copper 0x0 for access via the registered
68 * MDIO bus
69 */
bec90b6d
VD
70 err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE,
71 MV88E6XXX_PHY_PAGE_COPPER);
10fa5bfc
AL
72 if (unlikely(err)) {
73 dev_err(chip->dev,
74 "failed to restore PHY %d page Copper (%d)\n",
75 phy, err);
76 }
77}
78
79int mv88e6xxx_phy_page_read(struct mv88e6xxx_chip *chip, int phy,
80 u8 page, int reg, u16 *val)
81{
82 int err;
83
84 /* There is no paging for registers 22 */
bec90b6d 85 if (reg == MV88E6XXX_PHY_PAGE)
10fa5bfc
AL
86 return -EINVAL;
87
88 err = mv88e6xxx_phy_page_get(chip, phy, page);
89 if (!err) {
90 err = mv88e6xxx_phy_read(chip, phy, reg, val);
91 mv88e6xxx_phy_page_put(chip, phy);
92 }
93
94 return err;
95}
96
97int mv88e6xxx_phy_page_write(struct mv88e6xxx_chip *chip, int phy,
98 u8 page, int reg, u16 val)
99{
100 int err;
101
102 /* There is no paging for registers 22 */
bec90b6d 103 if (reg == MV88E6XXX_PHY_PAGE)
10fa5bfc
AL
104 return -EINVAL;
105
106 err = mv88e6xxx_phy_page_get(chip, phy, page);
107 if (!err) {
bec90b6d 108 err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
c309b158
AL
109 if (!err)
110 err = mv88e6xxx_phy_write(chip, phy, reg, val);
111
10fa5bfc
AL
112 mv88e6xxx_phy_page_put(chip, phy);
113 }
114
115 return err;
116}
117
b15a7c03 118static int mv88e6xxx_phy_ppu_disable(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
119{
120 if (!chip->info->ops->ppu_disable)
121 return 0;
122
123 return chip->info->ops->ppu_disable(chip);
124}
125
b15a7c03 126static int mv88e6xxx_phy_ppu_enable(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
127{
128 if (!chip->info->ops->ppu_enable)
129 return 0;
130
131 return chip->info->ops->ppu_enable(chip);
132}
133
b15a7c03 134static void mv88e6xxx_phy_ppu_reenable_work(struct work_struct *ugly)
10fa5bfc
AL
135{
136 struct mv88e6xxx_chip *chip;
137
138 chip = container_of(ugly, struct mv88e6xxx_chip, ppu_work);
139
140 mutex_lock(&chip->reg_lock);
141
142 if (mutex_trylock(&chip->ppu_mutex)) {
b15a7c03 143 if (mv88e6xxx_phy_ppu_enable(chip) == 0)
10fa5bfc
AL
144 chip->ppu_disabled = 0;
145 mutex_unlock(&chip->ppu_mutex);
146 }
147
148 mutex_unlock(&chip->reg_lock);
149}
150
e99e88a9 151static void mv88e6xxx_phy_ppu_reenable_timer(struct timer_list *t)
10fa5bfc 152{
e99e88a9 153 struct mv88e6xxx_chip *chip = from_timer(chip, t, ppu_timer);
10fa5bfc
AL
154
155 schedule_work(&chip->ppu_work);
156}
157
b15a7c03 158static int mv88e6xxx_phy_ppu_access_get(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
159{
160 int ret;
161
162 mutex_lock(&chip->ppu_mutex);
163
164 /* If the PHY polling unit is enabled, disable it so that
165 * we can access the PHY registers. If it was already
166 * disabled, cancel the timer that is going to re-enable
167 * it.
168 */
169 if (!chip->ppu_disabled) {
b15a7c03 170 ret = mv88e6xxx_phy_ppu_disable(chip);
10fa5bfc
AL
171 if (ret < 0) {
172 mutex_unlock(&chip->ppu_mutex);
173 return ret;
174 }
175 chip->ppu_disabled = 1;
176 } else {
177 del_timer(&chip->ppu_timer);
178 ret = 0;
179 }
180
181 return ret;
182}
183
b15a7c03 184static void mv88e6xxx_phy_ppu_access_put(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
185{
186 /* Schedule a timer to re-enable the PHY polling unit. */
187 mod_timer(&chip->ppu_timer, jiffies + msecs_to_jiffies(10));
188 mutex_unlock(&chip->ppu_mutex);
189}
190
b15a7c03 191static void mv88e6xxx_phy_ppu_state_init(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
192{
193 mutex_init(&chip->ppu_mutex);
b15a7c03 194 INIT_WORK(&chip->ppu_work, mv88e6xxx_phy_ppu_reenable_work);
e99e88a9 195 timer_setup(&chip->ppu_timer, mv88e6xxx_phy_ppu_reenable_timer, 0);
10fa5bfc
AL
196}
197
b15a7c03 198static void mv88e6xxx_phy_ppu_state_destroy(struct mv88e6xxx_chip *chip)
10fa5bfc
AL
199{
200 del_timer_sync(&chip->ppu_timer);
201}
202
7e20cfb5 203int mv88e6185_phy_ppu_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
10fa5bfc
AL
204 int addr, int reg, u16 *val)
205{
206 int err;
207
b15a7c03 208 err = mv88e6xxx_phy_ppu_access_get(chip);
10fa5bfc
AL
209 if (!err) {
210 err = mv88e6xxx_read(chip, addr, reg, val);
b15a7c03 211 mv88e6xxx_phy_ppu_access_put(chip);
10fa5bfc
AL
212 }
213
214 return err;
215}
216
7e20cfb5 217int mv88e6185_phy_ppu_write(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
10fa5bfc
AL
218 int addr, int reg, u16 val)
219{
220 int err;
221
b15a7c03 222 err = mv88e6xxx_phy_ppu_access_get(chip);
10fa5bfc
AL
223 if (!err) {
224 err = mv88e6xxx_write(chip, addr, reg, val);
b15a7c03 225 mv88e6xxx_phy_ppu_access_put(chip);
10fa5bfc
AL
226 }
227
228 return err;
229}
230
231void mv88e6xxx_phy_init(struct mv88e6xxx_chip *chip)
232{
233 if (chip->info->ops->ppu_enable && chip->info->ops->ppu_disable)
b15a7c03 234 mv88e6xxx_phy_ppu_state_init(chip);
10fa5bfc
AL
235}
236
237void mv88e6xxx_phy_destroy(struct mv88e6xxx_chip *chip)
238{
239 if (chip->info->ops->ppu_enable && chip->info->ops->ppu_disable)
b15a7c03 240 mv88e6xxx_phy_ppu_state_destroy(chip);
10fa5bfc 241}
1b17aedf
VD
242
243int mv88e6xxx_phy_setup(struct mv88e6xxx_chip *chip)
244{
b15a7c03 245 return mv88e6xxx_phy_ppu_enable(chip);
1b17aedf 246}