2 * 10G controller driver for Samsung EXYNOS SoCs
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Author: Siva Reddy Kallam <siva.kallam@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
13 #ifndef __SXGBE_PLATFORM_H__
14 #define __SXGBE_PLATFORM_H__
16 /* MDC Clock Selection define*/
17 #define SXGBE_CSR_100_150M 0x0 /* MDC = clk_scr_i/62 */
18 #define SXGBE_CSR_150_250M 0x1 /* MDC = clk_scr_i/102 */
19 #define SXGBE_CSR_250_300M 0x2 /* MDC = clk_scr_i/122 */
20 #define SXGBE_CSR_300_350M 0x3 /* MDC = clk_scr_i/142 */
21 #define SXGBE_CSR_350_400M 0x4 /* MDC = clk_scr_i/162 */
22 #define SXGBE_CSR_400_500M 0x5 /* MDC = clk_scr_i/202 */
24 /* Platfrom data for platform device structure's
27 struct sxgbe_mdio_bus_data
{
28 unsigned int phy_mask
;
33 struct sxgbe_dma_cfg
{
40 struct sxgbe_plat_data
{
45 struct sxgbe_mdio_bus_data
*mdio_bus_data
;
46 struct sxgbe_dma_cfg
*dma_cfg
;
49 int force_sf_dma_mode
;
50 int force_thresh_dma_mode
;
54 #endif /* __SXGBE_PLATFORM_H__ */