blob: 25678a9988beb01dd427dda2566104517234fb53 [file] [log] [blame]
Andy Fleming063c1262011-04-08 02:10:54 -05001/*
Claudiu Manoil5be00a02013-09-30 12:44:43 +03002 * Copyright 2009-2012, 2013 Freescale Semiconductor, Inc.
Andy Fleming063c1262011-04-08 02:10:54 -05003 * Jun-jie Zhang <b18070@freescale.com>
4 * Mingkai Hu <Mingkai.hu@freescale.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Andy Fleming063c1262011-04-08 02:10:54 -05007 */
Bin Meng9872b732016-01-11 22:41:18 -08008
Andy Fleming063c1262011-04-08 02:10:54 -05009#ifndef __FSL_PHY_H__
10#define __FSL_PHY_H__
11
12#include <net.h>
13#include <miiphy.h>
Claudiu Manoil93f26f12014-09-05 13:52:36 +080014
15struct tsec_mii_mng {
16 u32 miimcfg; /* MII management configuration reg */
17 u32 miimcom; /* MII management command reg */
18 u32 miimadd; /* MII management address reg */
19 u32 miimcon; /* MII management control reg */
20 u32 miimstat; /* MII management status reg */
21 u32 miimind; /* MII management indication reg */
22 u32 ifstat; /* Interface Status Register */
23};
24
25int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc);
Andy Fleming063c1262011-04-08 02:10:54 -050026
27/* PHY register offsets */
28#define PHY_EXT_PAGE_ACCESS 0x1f
29
30/* MII Management Configuration Register */
Bin Meng9872b732016-01-11 22:41:18 -080031#define MIIMCFG_RESET_MGMT 0x80000000
32#define MIIMCFG_MGMT_CLOCK_SELECT 0x00000007
33#define MIIMCFG_INIT_VALUE 0x00000003
Andy Fleming063c1262011-04-08 02:10:54 -050034
35/* MII Management Command Register */
36#define MIIMCOM_READ_CYCLE 0x00000001
37#define MIIMCOM_SCAN_CYCLE 0x00000002
38
39/* MII Management Address Register */
40#define MIIMADD_PHY_ADDR_SHIFT 8
41
42/* MII Management Indicator Register */
43#define MIIMIND_BUSY 0x00000001
44#define MIIMIND_NOTVALID 0x00000004
45
Claudiu Manoil5be00a02013-09-30 12:44:43 +030046void tsec_local_mdio_write(struct tsec_mii_mng __iomem *phyregs, int port_addr,
Andy Fleming063c1262011-04-08 02:10:54 -050047 int dev_addr, int reg, int value);
Claudiu Manoil5be00a02013-09-30 12:44:43 +030048int tsec_local_mdio_read(struct tsec_mii_mng __iomem *phyregs, int port_addr,
Andy Fleming063c1262011-04-08 02:10:54 -050049 int dev_addr, int regnum);
50int tsec_phy_read(struct mii_dev *bus, int addr, int dev_addr, int regnum);
51int tsec_phy_write(struct mii_dev *bus, int addr, int dev_addr, int regnum,
52 u16 value);
Roy Zang111fd192012-10-08 07:44:21 +000053int memac_mdio_write(struct mii_dev *bus, int port_addr, int dev_addr,
54 int regnum, u16 value);
55int memac_mdio_read(struct mii_dev *bus, int port_addr, int dev_addr,
56 int regnum);
Andy Fleming063c1262011-04-08 02:10:54 -050057
58struct fsl_pq_mdio_info {
Claudiu Manoil5be00a02013-09-30 12:44:43 +030059 struct tsec_mii_mng __iomem *regs;
Andy Fleming063c1262011-04-08 02:10:54 -050060 char *name;
61};
62int fsl_pq_mdio_init(bd_t *bis, struct fsl_pq_mdio_info *info);
63
64#endif /* __FSL_PHY_H__ */