hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * (C) Copyright 2014
 * Dirk Eibach,  Guntermann & Drunck GmbH, eibach@gdsys.de
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
 
#include <gdsys_fpga.h>
#include <miiphy.h>
 
#include "ihs_mdio.h"
 
static int ihs_mdio_idle(struct mii_dev *bus)
{
   struct ihs_mdio_info *info = bus->priv;
   u16 val;
   unsigned int ctr = 0;
 
   do {
       FPGA_GET_REG(info->fpga, mdio.control, &val);
       udelay(100);
       if (ctr++ > 10)
           return -1;
   } while (!(val & (1 << 12)));
 
   return 0;
}
 
static int ihs_mdio_reset(struct mii_dev *bus)
{
   ihs_mdio_idle(bus);
 
   return 0;
}
 
static int ihs_mdio_read(struct mii_dev *bus, int addr, int dev_addr,
            int regnum)
{
   struct ihs_mdio_info *info = bus->priv;
   u16 val;
 
   ihs_mdio_idle(bus);
 
   FPGA_SET_REG(info->fpga, mdio.control,
            ((addr & 0x1f) << 5) | (regnum & 0x1f) | (2 << 10));
 
   /* wait for rx data available */
   udelay(100);
 
   FPGA_GET_REG(info->fpga, mdio.rx_data, &val);
 
   return val;
}
 
static int ihs_mdio_write(struct mii_dev *bus, int addr, int dev_addr,
             int regnum, u16 value)
{
   struct ihs_mdio_info *info = bus->priv;
 
   ihs_mdio_idle(bus);
 
   FPGA_SET_REG(info->fpga, mdio.address_data, value);
   FPGA_SET_REG(info->fpga, mdio.control,
            ((addr & 0x1f) << 5) | (regnum & 0x1f) | (1 << 10));
 
   return 0;
}
 
int ihs_mdio_init(struct ihs_mdio_info *info)
{
   struct mii_dev *bus = mdio_alloc();
 
   if (!bus) {
       printf("Failed to allocate FSL MDIO bus\n");
       return -1;
   }
 
   bus->read = ihs_mdio_read;
   bus->write = ihs_mdio_write;
   bus->reset = ihs_mdio_reset;
   strcpy(bus->name, info->name);
 
   bus->priv = info;
 
   return mdio_register(bus);
}