summaryrefslogtreecommitdiffstats
path: root/include/smc911x.h
blob: 4a802ee52cc6341733054211189afbd72d9ce1fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * (C) Copyright 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
 *
 * Under GPLv2
 */

#ifndef __SMC911X_PLATFORM_H_
#define __SMC911X_PLATFORM_H_

/**
 * @brief Platform dependent feature:
 * Pass pointer to this structure as part of device_d -> platform_data
 */
struct smc911x_plat {
	int shift;
	unsigned int flags;
	unsigned int phy_mask;	/* external PHY only: mask out PHYs,
				   e.g. ~(1 << 5) to use PHY addr 5 */
};

#define SMC911X_FORCE_INTERNAL_PHY	0x01
#define SMC911X_FORCE_EXTERNAL_PHY	0x02

#endif /* __SMC911X_PLATFORM_H_ */