blob: a8d1c730a18244e994056326b0dc75b366ceaf5a [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 Scheithauer155cf5c2022-11-10 09:34:57 +010037
38 /* INTn can be routed to LED[2] pin. */
39 if (config->enable_int) {
40 printk(BIOS_DEBUG, "%s: INTn is routed to LED[2] pin %s.\n",
41 dev_path(dev->bus->dev), dev->chip_ops->name);
42
43 /* Select page 3 to access LED function control register. */
44 switch_page(dev, 3);
45
46 reg = mdio_read(dev, LED_TIMER_CTRL_REG);
47 setbits16(&reg, LED_IRQ_ENABLE);
48 mdio_write(dev, LED_TIMER_CTRL_REG, reg);
49
50 /* Switch back to page 0. */
51 switch_page(dev, 0);
52 }
Mario Scheithauerd4ab2ee2022-11-04 10:23:43 +010053}
54
55struct device_operations m88e1512_ops = {
56 .read_resources = noop_read_resources,
57 .set_resources = noop_set_resources,
58 .init = m88e1512_init,
59};
60
61struct chip_operations drivers_net_phy_m88e1512_ops = {
62 CHIP_NAME("88E1512")
63};