hc
2024-08-16 a24a44ff9ca902811b99aa9663d697cf452e08ef
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
/* SPDX-License-Identifier: GPL-2.0 */
#include <linux/device.h>
#include <linux/etherdevice.h>
#include <linux/gpio/driver.h>
 
/**
 * struct vsc73xx - VSC73xx state container
 */
struct vsc73xx {
   struct device            *dev;
   struct gpio_desc        *reset;
   struct dsa_switch        *ds;
   struct gpio_chip        gc;
   u16                chipid;
   u8                addr[ETH_ALEN];
   const struct vsc73xx_ops    *ops;
   void                *priv;
};
 
struct vsc73xx_ops {
   int (*read)(struct vsc73xx *vsc, u8 block, u8 subblock, u8 reg,
           u32 *val);
   int (*write)(struct vsc73xx *vsc, u8 block, u8 subblock, u8 reg,
            u32 val);
};
 
int vsc73xx_is_addr_valid(u8 block, u8 subblock);
int vsc73xx_probe(struct vsc73xx *vsc);
int vsc73xx_remove(struct vsc73xx *vsc);