blob: 899cff0169a955e9c878714931017137cb14b82c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Heiko Schocher4f3c42a2011-09-18 19:49:25 +00002/*
3 * Micrel KSZ8873 PHY Driver for TI DaVinci
4 * (TMS320DM644x) based boards.
5 *
6 * Copyright (C) 2011 Heiko Schocher <hsdenx.de>
7 *
8 * based on:
9 * National Semiconductor DP83848 PHY Driver for TI DaVinci
10 * (TMS320DM644x) based boards.
11 *
12 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
13 *
14 * --------------------------------------------------------
Heiko Schocher4f3c42a2011-09-18 19:49:25 +000015 */
16
17#include <common.h>
18#include <miiphy.h>
19#include <net.h>
20#include <asm/arch/emac_defs.h>
21#include <asm/io.h>
Masahiro Yamada601fbec2015-02-20 17:04:05 +090022#include "../../../drivers/net/davinci_emac.h"
Heiko Schocher4f3c42a2011-09-18 19:49:25 +000023
24int ksz8873_is_phy_connected(int phy_addr)
25{
26 u_int16_t dummy;
27
28 return davinci_eth_phy_read(phy_addr, MII_PHYSID1, &dummy);
29}
30
31int ksz8873_get_link_speed(int phy_addr)
32{
33 emac_regs *emac = (emac_regs *)EMAC_BASE_ADDR;
34
35 /* we always have a link to the switch, 100 FD */
36 writel((EMAC_MACCONTROL_MIIEN_ENABLE |
37 EMAC_MACCONTROL_FULLDUPLEX_ENABLE),
38 &emac->MACCONTROL);
39 return 1;
40}
41
42
43int ksz8873_init_phy(int phy_addr)
44{
45 return 1;
46}
47
48
49int ksz8873_auto_negotiate(int phy_addr)
50{
51 return dp83848_get_link_speed(phy_addr);
52}