blob: 252b5b3a3efef893271c846af74e272b937fbb73 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Lunn10fa5bf2017-05-26 01:03:20 +02002/*
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>
Andrew Lunn10fa5bf2017-05-26 01:03:20 +02008 */
9
10#include <linux/mdio.h>
11#include <linux/module.h>
Andrew Lunn10fa5bf2017-05-26 01:03:20 +020012
Vivien Didelot4d5f2ba72017-06-02 17:06:15 -040013#include "chip.h"
Andrew Lunn10fa5bf2017-05-26 01:03:20 +020014#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{
Vivien Didelotbec90b62017-06-08 18:34:14 -040060 return mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +020061}
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 */
Vivien Didelotbec90b62017-06-08 18:34:14 -040070 err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE,
71 MV88E6XXX_PHY_PAGE_COPPER);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +020072 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 */
Vivien Didelotbec90b62017-06-08 18:34:14 -040085 if (reg == MV88E6XXX_PHY_PAGE)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +020086 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 */
Vivien Didelotbec90b62017-06-08 18:34:14 -0400103 if (reg == MV88E6XXX_PHY_PAGE)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200104 return -EINVAL;
105
106 err = mv88e6xxx_phy_page_get(chip, phy, page);
107 if (!err) {
Vivien Didelotbec90b62017-06-08 18:34:14 -0400108 err = mv88e6xxx_phy_write(chip, phy, MV88E6XXX_PHY_PAGE, page);
Andrew Lunnc309b152018-09-02 18:13:14 +0200109 if (!err)
110 err = mv88e6xxx_phy_write(chip, phy, reg, val);
111
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200112 mv88e6xxx_phy_page_put(chip, phy);
113 }
114
115 return err;
116}
117
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400118static int mv88e6xxx_phy_ppu_disable(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200119{
120 if (!chip->info->ops->ppu_disable)
121 return 0;
122
123 return chip->info->ops->ppu_disable(chip);
124}
125
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400126static int mv88e6xxx_phy_ppu_enable(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200127{
128 if (!chip->info->ops->ppu_enable)
129 return 0;
130
131 return chip->info->ops->ppu_enable(chip);
132}
133
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400134static void mv88e6xxx_phy_ppu_reenable_work(struct work_struct *ugly)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200135{
136 struct mv88e6xxx_chip *chip;
137
138 chip = container_of(ugly, struct mv88e6xxx_chip, ppu_work);
139
Rasmus Villemoesc9acece2019-06-20 13:50:42 +0000140 mv88e6xxx_reg_lock(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200141
142 if (mutex_trylock(&chip->ppu_mutex)) {
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400143 if (mv88e6xxx_phy_ppu_enable(chip) == 0)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200144 chip->ppu_disabled = 0;
145 mutex_unlock(&chip->ppu_mutex);
146 }
147
Rasmus Villemoesc9acece2019-06-20 13:50:42 +0000148 mv88e6xxx_reg_unlock(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200149}
150
Kees Cooke99e88a2017-10-16 14:43:17 -0700151static void mv88e6xxx_phy_ppu_reenable_timer(struct timer_list *t)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200152{
Kees Cooke99e88a2017-10-16 14:43:17 -0700153 struct mv88e6xxx_chip *chip = from_timer(chip, t, ppu_timer);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200154
155 schedule_work(&chip->ppu_work);
156}
157
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400158static int mv88e6xxx_phy_ppu_access_get(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200159{
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) {
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400170 ret = mv88e6xxx_phy_ppu_disable(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200171 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
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400184static void mv88e6xxx_phy_ppu_access_put(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200185{
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
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400191static void mv88e6xxx_phy_ppu_state_init(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200192{
193 mutex_init(&chip->ppu_mutex);
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400194 INIT_WORK(&chip->ppu_work, mv88e6xxx_phy_ppu_reenable_work);
Kees Cooke99e88a2017-10-16 14:43:17 -0700195 timer_setup(&chip->ppu_timer, mv88e6xxx_phy_ppu_reenable_timer, 0);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200196}
197
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400198static void mv88e6xxx_phy_ppu_state_destroy(struct mv88e6xxx_chip *chip)
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200199{
200 del_timer_sync(&chip->ppu_timer);
201}
202
Vivien Didelot7e20cfb2017-05-26 18:03:06 -0400203int mv88e6185_phy_ppu_read(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200204 int addr, int reg, u16 *val)
205{
206 int err;
207
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400208 err = mv88e6xxx_phy_ppu_access_get(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200209 if (!err) {
210 err = mv88e6xxx_read(chip, addr, reg, val);
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400211 mv88e6xxx_phy_ppu_access_put(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200212 }
213
214 return err;
215}
216
Vivien Didelot7e20cfb2017-05-26 18:03:06 -0400217int mv88e6185_phy_ppu_write(struct mv88e6xxx_chip *chip, struct mii_bus *bus,
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200218 int addr, int reg, u16 val)
219{
220 int err;
221
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400222 err = mv88e6xxx_phy_ppu_access_get(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200223 if (!err) {
224 err = mv88e6xxx_write(chip, addr, reg, val);
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400225 mv88e6xxx_phy_ppu_access_put(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200226 }
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)
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400234 mv88e6xxx_phy_ppu_state_init(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200235}
236
237void mv88e6xxx_phy_destroy(struct mv88e6xxx_chip *chip)
238{
239 if (chip->info->ops->ppu_enable && chip->info->ops->ppu_disable)
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400240 mv88e6xxx_phy_ppu_state_destroy(chip);
Andrew Lunn10fa5bf2017-05-26 01:03:20 +0200241}
Vivien Didelot1b17aed2017-05-26 18:03:05 -0400242
243int mv88e6xxx_phy_setup(struct mv88e6xxx_chip *chip)
244{
Vivien Didelotb15a7c02017-05-26 18:03:07 -0400245 return mv88e6xxx_phy_ppu_enable(chip);
Vivien Didelot1b17aed2017-05-26 18:03:05 -0400246}