brintos

brintos / linux-shallow public Read only

0
0
Text · 692 B · 35d602f Raw
27 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/* Texas Instruments Ethernet Switch Driver3 *4 * Copyright (C) 2013 Texas Instruments5 *6 */7#ifndef __CPSW_H__8#define __CPSW_H__9 10#include <linux/if_ether.h>11#include <linux/phy.h>12 13#define mac_hi(mac)	(((mac)[0] << 0) | ((mac)[1] << 8) |	\14			 ((mac)[2] << 16) | ((mac)[3] << 24))15#define mac_lo(mac)	(((mac)[4] << 0) | ((mac)[5] << 8))16 17#if IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL)18void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave);19#else20static inline21void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave)22{}23#endif24int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr);25 26#endif /* __CPSW_H__ */27