linux/drivers/net/ethernet/aquantia/atlantic/hw_atl/hw_atl_b0.h
<<
>>
Prefs
   1/*
   2 * aQuantia Corporation Network Driver
   3 * Copyright (C) 2014-2017 aQuantia Corporation. All rights reserved
   4 *
   5 * This program is free software; you can redistribute it and/or modify it
   6 * under the terms and conditions of the GNU General Public License,
   7 * version 2, as published by the Free Software Foundation.
   8 */
   9
  10/* File hw_atl_b0.h: Declaration of abstract interface for Atlantic hardware
  11 * specific functions.
  12 */
  13
  14#ifndef HW_ATL_B0_H
  15#define HW_ATL_B0_H
  16
  17#include "../aq_common.h"
  18
  19#ifndef PCI_VENDOR_ID_AQUANTIA
  20
  21#define PCI_VENDOR_ID_AQUANTIA  0x1D6A
  22#define HW_ATL_DEVICE_ID_0001   0x0001
  23#define HW_ATL_DEVICE_ID_D100   0xD100
  24#define HW_ATL_DEVICE_ID_D107   0xD107
  25#define HW_ATL_DEVICE_ID_D108   0xD108
  26#define HW_ATL_DEVICE_ID_D109   0xD109
  27
  28#define HW_ATL_NIC_NAME "aQuantia AQtion 5Gbit Network Adapter"
  29
  30#endif
  31
  32struct aq_hw_ops *hw_atl_b0_get_ops_by_id(struct pci_dev *pdev);
  33
  34#endif /* HW_ATL_B0_H */
  35