blob: d0883bf9d69a9e360bab53fdd72994e6234ee3a2 [file] [log] [blame]
Mario Scheithauerd4ab2ee2022-11-04 10:23:43 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2
Mario Scheithauer1a97c892022-11-08 13:50:06 +01003#include <console/console.h>
Mario Scheithauerd4ab2ee2022-11-04 10:23:43 +01004#include <device/device.h>
Mario Scheithauer1a97c892022-11-08 13:50:06 +01005#include <device/mdio.h>
6#include <device/pci.h>
7#include "chip.h"
8#include "m88e1512.h"
9
10static void switch_page(struct device *dev, uint8_t page)
11{
12 mdio_write(dev, PAGE_REG, page);
13}
Mario Scheithauerd4ab2ee2022-11-04 10:23:43 +010014
15static void m88e1512_init(struct device *dev)
16{
Mario Scheithauer1a97c892022-11-08 13:50:06 +010017 struct drivers_net_phy_m88e1512_config *config = dev->chip_info;
18 uint16_t reg;
19
20 /* Configure LEDs if requested. */
21 if (config->configure_leds) {
22 printk(BIOS_DEBUG, "%s: Set a customized LED mode for %s.\n",
23 dev_path(dev->bus->dev), dev->chip_ops->name);
24
25 /* Select page 3 to access LED function control register. */
26 switch_page(dev, 3);
27
28 /* Modify PHY LED mode. */
29 reg = mdio_read(dev, LED_FUNC_CTRL_REG);
30 clrsetbits16(&reg, LED_FUNC_CTRL_MASK, config->led_0_ctrl |
31 (config->led_1_ctrl << 4) | (config->led_2_ctrl << 8));
32 mdio_write(dev, LED_FUNC_CTRL_REG, reg);
33
34 /* Switch back to page 0. */
35 switch_page(dev, 0);
36 }
Mario Scheithauerd4ab2ee2022-11-04 10:23:43 +010037}
38
39struct device_operations m88e1512_ops = {
40 .read_resources = noop_read_resources,
41 .set_resources = noop_set_resources,
42 .init = m88e1512_init,
43};
44
45struct chip_operations drivers_net_phy_m88e1512_ops = {
46 CHIP_NAME("88E1512")
47};