Commit 50cc972d authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Felix Fietkau

wifi: mt76: mt7921: get rid of eeprom.h

eeprom.h is mostly empty for mt7921, so get rid of it.
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 6a8b899d
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
/* Copyright (C) 2020 MediaTek Inc. */ /* Copyright (C) 2020 MediaTek Inc. */
#include "mt7921.h" #include "mt7921.h"
#include "eeprom.h"
static int static int
mt7921_reg_set(void *data, u64 val) mt7921_reg_set(void *data, u64 val)
......
/* SPDX-License-Identifier: ISC */
/* Copyright (C) 2020 MediaTek Inc. */
#ifndef __MT7921_EEPROM_H
#define __MT7921_EEPROM_H
#include "mt7921.h"
enum mt7921_eeprom_field {
MT_EE_CHIP_ID = 0x000,
MT_EE_VERSION = 0x002,
MT_EE_MAC_ADDR = 0x004,
MT_EE_WIFI_CONF = 0x07c,
MT_EE_HW_TYPE = 0x55b,
__MT_EE_MAX = 0x9ff
};
#define MT_EE_WIFI_CONF_TX_MASK BIT(0)
#define MT_EE_WIFI_CONF_BAND_SEL GENMASK(3, 2)
#define MT_EE_HW_TYPE_ENCAP BIT(0)
enum mt7921_eeprom_band {
MT_EE_NA,
MT_EE_5GHZ,
MT_EE_2GHZ,
MT_EE_DUAL_BAND,
};
#endif
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#include "mt7921.h" #include "mt7921.h"
#include "mac.h" #include "mac.h"
#include "mcu.h" #include "mcu.h"
#include "eeprom.h"
static const struct ieee80211_iface_limit if_limits[] = { static const struct ieee80211_iface_limit if_limits[] = {
{ {
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
#include <linux/firmware.h> #include <linux/firmware.h>
#include "mt7921.h" #include "mt7921.h"
#include "mt7921_trace.h" #include "mt7921_trace.h"
#include "eeprom.h"
#include "mcu.h" #include "mcu.h"
#include "mac.h" #include "mac.h"
......
...@@ -266,6 +266,17 @@ struct mt7921_phy { ...@@ -266,6 +266,17 @@ struct mt7921_phy {
bool roc_grant; bool roc_grant;
}; };
enum mt7921_eeprom_field {
MT_EE_CHIP_ID = 0x000,
MT_EE_VERSION = 0x002,
MT_EE_MAC_ADDR = 0x004,
MT_EE_WIFI_CONF = 0x07c,
MT_EE_HW_TYPE = 0x55b,
__MT_EE_MAX = 0x9ff
};
#define MT_EE_HW_TYPE_ENCAP BIT(0)
#define mt7921_init_reset(dev) ((dev)->hif_ops->init_reset(dev)) #define mt7921_init_reset(dev) ((dev)->hif_ops->init_reset(dev))
#define mt7921_dev_reset(dev) ((dev)->hif_ops->reset(dev)) #define mt7921_dev_reset(dev) ((dev)->hif_ops->reset(dev))
#define mt7921_mcu_init(dev) ((dev)->hif_ops->mcu_init(dev)) #define mt7921_mcu_init(dev) ((dev)->hif_ops->mcu_init(dev))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment