linux/drivers/net/ethernet/hisilicon/hns/hns_dsaf_misc.h
<<
>>
Prefs
   1/*
   2 * Copyright (c) 2014-2015 Hisilicon Limited.
   3 *
   4 * This program is free software; you can redistribute it and/or modify
   5 * it under the terms of the GNU General Public License as published by
   6 * the Free Software Foundation; either version 2 of the License, or
   7 * (at your option) any later version.
   8 */
   9
  10#ifndef _HNS_DSAF_MISC_H
  11#define _HNS_DSAF_MISC_H
  12
  13#include <linux/of.h>
  14#include <linux/of_address.h>
  15#include <linux/platform_device.h>
  16
  17#include "hns_dsaf_mac.h"
  18
  19#define CPLD_ADDR_PORT_OFFSET   0x4
  20
  21#define HS_LED_ON               0xE
  22#define HS_LED_OFF              0xF
  23
  24#define CPLD_LED_ON_VALUE       1
  25#define CPLD_LED_DEFAULT_VALUE  0
  26
  27#define MAC_SFP_PORT_OFFSET     0x2
  28
  29#define DSAF_LED_SPEED_S 0
  30#define DSAF_LED_SPEED_M (0x3 << DSAF_LED_SPEED_S)
  31
  32#define DSAF_LED_LINK_B 2
  33#define DSAF_LED_DATA_B 4
  34#define DSAF_LED_ANCHOR_B 5
  35
  36struct dsaf_misc_op *hns_misc_op_get(struct dsaf_device *dsaf_dev);
  37struct
  38platform_device *hns_dsaf_find_platform_device(struct fwnode_handle *fwnode);
  39#endif
  40