mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-30 21:44:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
 | |
| +++ b/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
 | |
| @@ -92,6 +92,7 @@ MODULE_LICENSE("Dual BSD/GPL");
 | |
|  
 | |
|  /* recognized BCMA Core IDs */
 | |
|  static struct bcma_device_id brcms_coreid_table[] = {
 | |
| +//	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 17, BCMA_ANY_CLASS),
 | |
|  	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 23, BCMA_ANY_CLASS),
 | |
|  	BCMA_CORE(BCMA_MANUF_BCM, BCMA_CORE_80211, 24, BCMA_ANY_CLASS),
 | |
|  	BCMA_CORETABLE_END
 | |
| --- a/drivers/net/wireless/brcm80211/brcmsmac/main.c
 | |
| +++ b/drivers/net/wireless/brcm80211/brcmsmac/main.c
 | |
| @@ -751,7 +751,7 @@ static void brcms_c_ucode_bsinit(struct
 | |
|  	brcms_c_write_mhf(wlc_hw, wlc_hw->band->mhfs);
 | |
|  
 | |
|  	/* do band-specific ucode IHR, SHM, and SCR inits */
 | |
| -	if (D11REV_IS(wlc_hw->corerev, 23)) {
 | |
| +	if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
 | |
|  		if (BRCMS_ISNPHY(wlc_hw->band))
 | |
|  			brcms_c_write_inits(wlc_hw, ucode->d11n0bsinitvals16);
 | |
|  		else
 | |
| @@ -2276,7 +2276,7 @@ static void brcms_ucode_download(struct
 | |
|  	if (wlc_hw->ucode_loaded)
 | |
|  		return;
 | |
|  
 | |
| -	if (D11REV_IS(wlc_hw->corerev, 23)) {
 | |
| +	if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
 | |
|  		if (BRCMS_ISNPHY(wlc_hw->band)) {
 | |
|  			brcms_ucode_write(wlc_hw, ucode->bcm43xx_16_mimo,
 | |
|  					  ucode->bcm43xx_16_mimosz);
 | |
| @@ -3252,7 +3252,7 @@ static void brcms_b_coreinit(struct brcm
 | |
|  
 | |
|  	sflags = bcma_aread32(core, BCMA_IOST);
 | |
|  
 | |
| -	if (D11REV_IS(wlc_hw->corerev, 23)) {
 | |
| +	if (D11REV_IS(wlc_hw->corerev, 17) || D11REV_IS(wlc_hw->corerev, 23)) {
 | |
|  		if (BRCMS_ISNPHY(wlc_hw->band))
 | |
|  			brcms_c_write_inits(wlc_hw, ucode->d11n0initvals16);
 | |
|  		else
 |