pci_init.c 10.2 KB
Newer Older
F
Felix Fietkau 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2016 Felix Fietkau <nbd@nbd.name>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <linux/delay.h>
#include "mt76x2.h"
19 20
#include "eeprom.h"
#include "mcu.h"
F
Felix Fietkau 已提交
21 22

static void
23
mt76x2_mac_pbf_init(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
{
	u32 val;

	val = MT_PBF_SYS_CTRL_MCU_RESET |
	      MT_PBF_SYS_CTRL_DMA_RESET |
	      MT_PBF_SYS_CTRL_MAC_RESET |
	      MT_PBF_SYS_CTRL_PBF_RESET |
	      MT_PBF_SYS_CTRL_ASY_RESET;

	mt76_set(dev, MT_PBF_SYS_CTRL, val);
	mt76_clear(dev, MT_PBF_SYS_CTRL, val);

	mt76_wr(dev, MT_PBF_TX_MAX_PCNT, 0xefef3f1f);
	mt76_wr(dev, MT_PBF_RX_MAX_PCNT, 0xfebf);
}

static void
41
mt76x2_fixup_xtal(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
42 43 44 45
{
	u16 eep_val;
	s8 offset = 0;

46
	eep_val = mt76x02_eeprom_get(dev, MT_EE_XTAL_TRIM_2);
F
Felix Fietkau 已提交
47 48 49 50 51 52 53 54 55

	offset = eep_val & 0x7f;
	if ((eep_val & 0xff) == 0xff)
		offset = 0;
	else if (eep_val & 0x80)
		offset = 0 - offset;

	eep_val >>= 8;
	if (eep_val == 0x00 || eep_val == 0xff) {
56
		eep_val = mt76x02_eeprom_get(dev, MT_EE_XTAL_TRIM_1);
F
Felix Fietkau 已提交
57 58 59 60 61 62 63 64 65 66
		eep_val &= 0xff;

		if (eep_val == 0x00 || eep_val == 0xff)
			eep_val = 0x14;
	}

	eep_val &= 0x7f;
	mt76_rmw_field(dev, MT_XO_CTRL5, MT_XO_CTRL5_C2_VAL, eep_val + offset);
	mt76_set(dev, MT_XO_CTRL6, MT_XO_CTRL6_C2_CTRL);

67
	eep_val = mt76x02_eeprom_get(dev, MT_EE_NIC_CONF_2);
F
Felix Fietkau 已提交
68 69 70 71 72 73 74 75 76 77 78 79
	switch (FIELD_GET(MT_EE_NIC_CONF_2_XTAL_OPTION, eep_val)) {
	case 0:
		mt76_wr(dev, MT_XO_CTRL7, 0x5c1fee80);
		break;
	case 1:
		mt76_wr(dev, MT_XO_CTRL7, 0x5c1feed0);
		break;
	default:
		break;
	}
}

80
static int mt76x2_mac_reset(struct mt76x02_dev *dev, bool hard)
F
Felix Fietkau 已提交
81 82 83 84 85
{
	const u8 *macaddr = dev->mt76.macaddr;
	u32 val;
	int i, k;

S
Stanislaw Gruszka 已提交
86
	if (!mt76x02_wait_for_mac(&dev->mt76))
F
Felix Fietkau 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
		return -ETIMEDOUT;

	val = mt76_rr(dev, MT_WPDMA_GLO_CFG);

	val &= ~(MT_WPDMA_GLO_CFG_TX_DMA_EN |
		 MT_WPDMA_GLO_CFG_TX_DMA_BUSY |
		 MT_WPDMA_GLO_CFG_RX_DMA_EN |
		 MT_WPDMA_GLO_CFG_RX_DMA_BUSY |
		 MT_WPDMA_GLO_CFG_DMA_BURST_SIZE);
	val |= FIELD_PREP(MT_WPDMA_GLO_CFG_DMA_BURST_SIZE, 3);

	mt76_wr(dev, MT_WPDMA_GLO_CFG, val);

	mt76x2_mac_pbf_init(dev);
	mt76_write_mac_initvals(dev);
	mt76x2_fixup_xtal(dev);

	mt76_clear(dev, MT_MAC_SYS_CTRL,
		   MT_MAC_SYS_CTRL_RESET_CSR |
		   MT_MAC_SYS_CTRL_RESET_BBP);

	if (is_mt7612(dev))
		mt76_clear(dev, MT_COEXCFG0, MT_COEXCFG0_COEX_EN);

	mt76_set(dev, MT_EXT_CCA_CFG, 0x0000f000);
	mt76_clear(dev, MT_TX_ALC_CFG_4, BIT(31));

	mt76_wr(dev, MT_RF_BYPASS_0, 0x06000000);
	mt76_wr(dev, MT_RF_SETTING_0, 0x08800000);
	usleep_range(5000, 10000);
	mt76_wr(dev, MT_RF_BYPASS_0, 0x00000000);

	mt76_wr(dev, MT_MCU_CLOCK_CTL, 0x1401);
	mt76_clear(dev, MT_FCE_L2_STUFF, MT_FCE_L2_STUFF_WR_MPDU_LEN_EN);

	mt76_wr(dev, MT_MAC_ADDR_DW0, get_unaligned_le32(macaddr));
	mt76_wr(dev, MT_MAC_ADDR_DW1, get_unaligned_le16(macaddr + 4));

	mt76_rmw_field(dev, MT_INT_TIMER_CFG, MT_INT_TIMER_CFG_GP_TIMER,
		       MT_DFS_GP_INTERVAL);

128
	mt76x02_init_beacon_config(dev);
F
Felix Fietkau 已提交
129 130 131 132 133 134 135
	if (!hard)
		return 0;

	for (i = 0; i < 256 / 32; i++)
		mt76_wr(dev, MT_WCID_DROP_BASE + i * 4, 0);

	for (i = 0; i < 256; i++)
136
		mt76x02_mac_wcid_setup(dev, i, 0, NULL);
F
Felix Fietkau 已提交
137

138
	for (i = 0; i < MT_MAX_VIFS; i++)
139
		mt76x02_mac_wcid_setup(dev, MT_VIF_WCID(i), i, NULL);
140

F
Felix Fietkau 已提交
141 142
	for (i = 0; i < 16; i++)
		for (k = 0; k < 4; k++)
143
			mt76x02_mac_shared_key_setup(dev, i, k, NULL);
F
Felix Fietkau 已提交
144 145 146 147 148 149 150 151 152 153 154 155

	for (i = 0; i < 16; i++)
		mt76_rr(dev, MT_TX_STAT_FIFO);

	mt76_wr(dev, MT_CH_TIME_CFG,
		MT_CH_TIME_CFG_TIMER_EN |
		MT_CH_TIME_CFG_TX_AS_BUSY |
		MT_CH_TIME_CFG_RX_AS_BUSY |
		MT_CH_TIME_CFG_NAV_AS_BUSY |
		MT_CH_TIME_CFG_EIFS_AS_BUSY |
		FIELD_PREP(MT_CH_TIME_CFG_CH_TIMER_CLR, 1));

156
	mt76x02_set_tx_ackto(dev);
F
Felix Fietkau 已提交
157 158 159 160

	return 0;
}

161
int mt76x2_mac_start(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
162 163 164 165 166 167 168 169 170 171
{
	int i;

	for (i = 0; i < 16; i++)
		mt76_rr(dev, MT_TX_AGG_CNT(i));

	for (i = 0; i < 16; i++)
		mt76_rr(dev, MT_TX_STAT_FIFO);

	memset(dev->aggr_stats, 0, sizeof(dev->aggr_stats));
172
	mt76x02_mac_start(dev);
F
Felix Fietkau 已提交
173 174 175 176

	return 0;
}

177
void mt76x2_mac_resume(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
178 179 180 181 182 183 184
{
	mt76_wr(dev, MT_MAC_SYS_CTRL,
		MT_MAC_SYS_CTRL_ENABLE_TX |
		MT_MAC_SYS_CTRL_ENABLE_RX);
}

static void
185
mt76x2_power_on_rf_patch(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
{
	mt76_set(dev, 0x10130, BIT(0) | BIT(16));
	udelay(1);

	mt76_clear(dev, 0x1001c, 0xff);
	mt76_set(dev, 0x1001c, 0x30);

	mt76_wr(dev, 0x10014, 0x484f);
	udelay(1);

	mt76_set(dev, 0x10130, BIT(17));
	udelay(125);

	mt76_clear(dev, 0x10130, BIT(16));
	udelay(50);

	mt76_set(dev, 0x1014c, BIT(19) | BIT(20));
}

static void
206
mt76x2_power_on_rf(struct mt76x02_dev *dev, int unit)
F
Felix Fietkau 已提交
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
{
	int shift = unit ? 8 : 0;

	/* Enable RF BG */
	mt76_set(dev, 0x10130, BIT(0) << shift);
	udelay(10);

	/* Enable RFDIG LDO/AFE/ABB/ADDA */
	mt76_set(dev, 0x10130, (BIT(1) | BIT(3) | BIT(4) | BIT(5)) << shift);
	udelay(10);

	/* Switch RFDIG power to internal LDO */
	mt76_clear(dev, 0x10130, BIT(2) << shift);
	udelay(10);

	mt76x2_power_on_rf_patch(dev);

	mt76_set(dev, 0x530, 0xf);
}

static void
228
mt76x2_power_on(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
{
	u32 val;

	/* Turn on WL MTCMOS */
	mt76_set(dev, MT_WLAN_MTC_CTRL, MT_WLAN_MTC_CTRL_MTCMOS_PWR_UP);

	val = MT_WLAN_MTC_CTRL_STATE_UP |
	      MT_WLAN_MTC_CTRL_PWR_ACK |
	      MT_WLAN_MTC_CTRL_PWR_ACK_S;

	mt76_poll(dev, MT_WLAN_MTC_CTRL, val, val, 1000);

	mt76_clear(dev, MT_WLAN_MTC_CTRL, 0x7f << 16);
	udelay(10);

	mt76_clear(dev, MT_WLAN_MTC_CTRL, 0xf << 24);
	udelay(10);

	mt76_set(dev, MT_WLAN_MTC_CTRL, 0xf << 24);
	mt76_clear(dev, MT_WLAN_MTC_CTRL, 0xfff);

	/* Turn on AD/DA power down */
	mt76_clear(dev, 0x11204, BIT(3));

	/* WLAN function enable */
	mt76_set(dev, 0x10080, BIT(0));

	/* Release BBP software reset */
	mt76_clear(dev, 0x10064, BIT(18));

	mt76x2_power_on_rf(dev, 0);
	mt76x2_power_on_rf(dev, 1);
}

263
int mt76x2_init_hardware(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
264 265 266
{
	int ret;

267
	mt76x02_dma_disable(dev);
F
Felix Fietkau 已提交
268 269 270 271 272 273 274 275 276 277 278
	mt76x2_reset_wlan(dev, true);
	mt76x2_power_on(dev);

	ret = mt76x2_eeprom_init(dev);
	if (ret)
		return ret;

	ret = mt76x2_mac_reset(dev, true);
	if (ret)
		return ret;

279
	dev->mt76.rxfilter = mt76_rr(dev, MT_RX_FILTR_CFG);
280

281
	ret = mt76x02_dma_init(dev);
F
Felix Fietkau 已提交
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
	if (ret)
		return ret;

	set_bit(MT76_STATE_INITIALIZED, &dev->mt76.state);
	ret = mt76x2_mac_start(dev);
	if (ret)
		return ret;

	ret = mt76x2_mcu_init(dev);
	if (ret)
		return ret;

	mt76x2_mac_stop(dev, false);

	return 0;
}

299
void mt76x2_stop_hardware(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
300 301 302
{
	cancel_delayed_work_sync(&dev->cal_work);
	cancel_delayed_work_sync(&dev->mac_work);
303
	mt76x02_mcu_set_radio_state(dev, false, true);
F
Felix Fietkau 已提交
304 305 306
	mt76x2_mac_stop(dev, false);
}

307
void mt76x2_cleanup(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
308
{
309 310
	tasklet_disable(&dev->dfs_pd.dfs_tasklet);
	tasklet_disable(&dev->pre_tbtt_tasklet);
F
Felix Fietkau 已提交
311
	mt76x2_stop_hardware(dev);
312
	mt76x02_dma_cleanup(dev);
313
	mt76x02_mcu_cleanup(dev);
F
Felix Fietkau 已提交
314 315
}

316
struct mt76x02_dev *mt76x2_alloc_device(struct device *pdev)
F
Felix Fietkau 已提交
317 318
{
	static const struct mt76_driver_ops drv_ops = {
319
		.txwi_size = sizeof(struct mt76x02_txwi),
320
		.update_survey = mt76x02_update_channel,
321
		.tx_prepare_skb = mt76x02_tx_prepare_skb,
322
		.tx_complete_skb = mt76x02_tx_complete_skb,
323
		.rx_skb = mt76x02_queue_rx_skb,
324
		.rx_poll_complete = mt76x02_rx_poll_complete,
325
		.sta_ps = mt76x02_sta_ps,
F
Felix Fietkau 已提交
326
	};
327
	struct mt76x02_dev *dev;
328
	struct mt76_dev *mdev;
F
Felix Fietkau 已提交
329

330 331
	mdev = mt76_alloc_device(sizeof(*dev), &mt76x2_ops);
	if (!mdev)
F
Felix Fietkau 已提交
332 333
		return NULL;

334
	dev = container_of(mdev, struct mt76x02_dev, mt76);
335 336
	mdev->dev = pdev;
	mdev->drv = &drv_ops;
F
Felix Fietkau 已提交
337 338 339 340 341 342 343

	return dev;
}

static void mt76x2_led_set_config(struct mt76_dev *mt76, u8 delay_on,
				  u8 delay_off)
{
344 345
	struct mt76x02_dev *dev = container_of(mt76, struct mt76x02_dev,
					       mt76);
F
Felix Fietkau 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	u32 val;

	val = MT_LED_STATUS_DURATION(0xff) |
	      MT_LED_STATUS_OFF(delay_off) |
	      MT_LED_STATUS_ON(delay_on);

	mt76_wr(dev, MT_LED_S0(mt76->led_pin), val);
	mt76_wr(dev, MT_LED_S1(mt76->led_pin), val);

	val = MT_LED_CTRL_REPLAY(mt76->led_pin) |
	      MT_LED_CTRL_KICK(mt76->led_pin);
	if (mt76->led_al)
		val |= MT_LED_CTRL_POLARITY(mt76->led_pin);
	mt76_wr(dev, MT_LED_CTRL, val);
}

static int mt76x2_led_set_blink(struct led_classdev *led_cdev,
				unsigned long *delay_on,
				unsigned long *delay_off)
{
	struct mt76_dev *mt76 = container_of(led_cdev, struct mt76_dev,
					     led_cdev);
	u8 delta_on, delta_off;

	delta_off = max_t(u8, *delay_off / 10, 1);
	delta_on = max_t(u8, *delay_on / 10, 1);

	mt76x2_led_set_config(mt76, delta_on, delta_off);
	return 0;
}

static void mt76x2_led_set_brightness(struct led_classdev *led_cdev,
				      enum led_brightness brightness)
{
	struct mt76_dev *mt76 = container_of(led_cdev, struct mt76_dev,
					     led_cdev);

	if (!brightness)
		mt76x2_led_set_config(mt76, 0, 0xff);
	else
		mt76x2_led_set_config(mt76, 0xff, 0);
}

389
int mt76x2_register_device(struct mt76x02_dev *dev)
F
Felix Fietkau 已提交
390 391 392 393 394
{
	struct ieee80211_hw *hw = mt76_hw(dev);
	struct wiphy *wiphy = hw->wiphy;
	int i, ret;

395 396
	INIT_DELAYED_WORK(&dev->cal_work, mt76x2_phy_calibrate);

397
	mt76x02_init_device(dev);
F
Felix Fietkau 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

	ret = mt76x2_init_hardware(dev);
	if (ret)
		return ret;

	for (i = 0; i < ARRAY_SIZE(dev->macaddr_list); i++) {
		u8 *addr = dev->macaddr_list[i].addr;

		memcpy(addr, dev->mt76.macaddr, ETH_ALEN);

		if (!i)
			continue;

		addr[0] |= BIT(1);
		addr[0] ^= ((i - 1) << 2);
	}
	wiphy->addresses = dev->macaddr_list;
	wiphy->n_addresses = ARRAY_SIZE(dev->macaddr_list);

417
	wiphy->reg_notifier = mt76x02_regd_notifier;
F
Felix Fietkau 已提交
418 419 420

	wiphy_ext_feature_set(wiphy, NL80211_EXT_FEATURE_VHT_IBSS);

421
	mt76x02_dfs_init_detector(dev);
F
Felix Fietkau 已提交
422 423 424 425 426

	/* init led callbacks */
	dev->mt76.led_cdev.brightness_set = mt76x2_led_set_brightness;
	dev->mt76.led_cdev.blink_set = mt76x2_led_set_blink;

427 428
	ret = mt76_register_device(&dev->mt76, true, mt76x02_rates,
				   ARRAY_SIZE(mt76x02_rates));
F
Felix Fietkau 已提交
429 430 431
	if (ret)
		goto fail;

432
	mt76x02_init_debugfs(dev);
433 434
	mt76x2_init_txpower(dev, &dev->mt76.sband_2g.sband);
	mt76x2_init_txpower(dev, &dev->mt76.sband_5g.sband);
F
Felix Fietkau 已提交
435 436 437 438 439 440 441 442 443

	return 0;

fail:
	mt76x2_stop_hardware(dev);
	return ret;
}