* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
@ 2012-08-02 6:28 Mohammed Shafi Shajakhan
2012-08-02 17:43 ` Luis R. Rodriguez
0 siblings, 1 reply; 6+ messages in thread
From: Mohammed Shafi Shajakhan @ 2012-08-02 6:28 UTC (permalink / raw)
To: ath9k-devel
From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
AR1111 is same as AR9485. The h/w
difference between them is quite insignificant,
Felix suggests only very few baseband features
may not be available in AR1111. The h/w code for
AR9485 is already present, so AR1111 should
work fine with the addition of its PID/VID.
Cc: stable at vger.kernel.org [2.6.39+]
Cc: Felix Bitterli <felixb@qca.qualcomm.com>
Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
---
drivers/net/wireless/ath/ath9k/hw.c | 1 +
drivers/net/wireless/ath/ath9k/hw.h | 1 +
drivers/net/wireless/ath/ath9k/pci.c | 1 +
3 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index cfa91ab..60b6a9d 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -730,6 +730,7 @@ int ath9k_hw_init(struct ath_hw *ah)
case AR9300_DEVID_QCA955X:
case AR9300_DEVID_AR9580:
case AR9300_DEVID_AR9462:
+ case AR9485_DEVID_AR1111:
break;
default:
if (common->bus_ops->ath_bus_type == ATH_USB)
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h
index dd0c146..ce7332c 100644
--- a/drivers/net/wireless/ath/ath9k/hw.h
+++ b/drivers/net/wireless/ath/ath9k/hw.h
@@ -49,6 +49,7 @@
#define AR9300_DEVID_AR9462 0x0034
#define AR9300_DEVID_AR9330 0x0035
#define AR9300_DEVID_QCA955X 0x0038
+#define AR9485_DEVID_AR1111 0x0037
#define AR5416_AR9100_DEVID 0x000b
diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c
index 87b89d5..d455de9 100644
--- a/drivers/net/wireless/ath/ath9k/pci.c
+++ b/drivers/net/wireless/ath/ath9k/pci.c
@@ -37,6 +37,7 @@ static DEFINE_PCI_DEVICE_TABLE(ath_pci_id_table) = {
{ PCI_VDEVICE(ATHEROS, 0x0032) }, /* PCI-E AR9485 */
{ PCI_VDEVICE(ATHEROS, 0x0033) }, /* PCI-E AR9580 */
{ PCI_VDEVICE(ATHEROS, 0x0034) }, /* PCI-E AR9462 */
+ { PCI_VDEVICE(ATHEROS, 0x0037) }, /* PCI-E AR1111/AR9485 */
{ 0 }
};
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
2012-08-02 6:28 [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111 Mohammed Shafi Shajakhan
@ 2012-08-02 17:43 ` Luis R. Rodriguez
2012-08-02 18:05 ` Tim and Alison Bentley
0 siblings, 1 reply; 6+ messages in thread
From: Luis R. Rodriguez @ 2012-08-02 17:43 UTC (permalink / raw)
To: ath9k-devel
On Wed, Aug 1, 2012 at 11:28 PM, Mohammed Shafi Shajakhan
<mohammed@qca.qualcomm.com> wrote:
> From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
>
> AR1111 is same as AR9485. The h/w
> difference between them is quite insignificant,
> Felix suggests only very few baseband features
> may not be available in AR1111. The h/w code for
> AR9485 is already present, so AR1111 should
> work fine with the addition of its PID/VID.
>
> Cc: stable at vger.kernel.org [2.6.39+]
> Cc: Felix Bitterli <felixb@qca.qualcomm.com>
> Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
> Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Nice! I'd be happy with this going in once we get a Tested-by: report. Dan, Tim?
Luis
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
2012-08-02 17:43 ` Luis R. Rodriguez
@ 2012-08-02 18:05 ` Tim and Alison Bentley
2012-08-02 18:13 ` John W. Linville
0 siblings, 1 reply; 6+ messages in thread
From: Tim and Alison Bentley @ 2012-08-02 18:05 UTC (permalink / raw)
To: ath9k-devel
On 2 August 2012 18:43, Luis R. Rodriguez <rodrigue@qca.qualcomm.com> wrote:
> On Wed, Aug 1, 2012 at 11:28 PM, Mohammed Shafi Shajakhan
> <mohammed@qca.qualcomm.com> wrote:
> > From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
> >
> > AR1111 is same as AR9485. The h/w
> > difference between them is quite insignificant,
> > Felix suggests only very few baseband features
> > may not be available in AR1111. The h/w code for
> > AR9485 is already present, so AR1111 should
> > work fine with the addition of its PID/VID.
> >
> > Cc: stable at vger.kernel.org [2.6.39+]
> > Cc: Felix Bitterli <felixb@qca.qualcomm.com>
> > Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
> > Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
>
> Nice! I'd be happy with this going in once we get a Tested-by: report.
> Dan, Tim?
>
>
Will test tomorrow when I have time
--
Tim and Alison Bentley
Home at TRARBentley.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20120802/502456c6/attachment.htm
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
2012-08-02 18:05 ` Tim and Alison Bentley
@ 2012-08-02 18:13 ` John W. Linville
2012-08-02 18:50 ` Tim and Alison Bentley
0 siblings, 1 reply; 6+ messages in thread
From: John W. Linville @ 2012-08-02 18:13 UTC (permalink / raw)
To: ath9k-devel
On Thu, Aug 02, 2012 at 07:05:12PM +0100, Tim and Alison Bentley wrote:
> On 2 August 2012 18:43, Luis R. Rodriguez <rodrigue@qca.qualcomm.com> wrote:
>
> > On Wed, Aug 1, 2012 at 11:28 PM, Mohammed Shafi Shajakhan
> > <mohammed@qca.qualcomm.com> wrote:
> > > From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
> > >
> > > AR1111 is same as AR9485. The h/w
> > > difference between them is quite insignificant,
> > > Felix suggests only very few baseband features
> > > may not be available in AR1111. The h/w code for
> > > AR9485 is already present, so AR1111 should
> > > work fine with the addition of its PID/VID.
> > >
> > > Cc: stable at vger.kernel.org [2.6.39+]
> > > Cc: Felix Bitterli <felixb@qca.qualcomm.com>
> > > Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
> > > Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
> >
> > Nice! I'd be happy with this going in once we get a Tested-by: report.
> > Dan, Tim?
> >
> >
>
> Will test tomorrow when I have time
Hmmm...well, I just pushed it to wireless.git. I won't push it to
Dave until sometime tomorrow, to give a chance for some test.
John
--
John W. Linville Someday the world will need a hero, and you
linville at tuxdriver.com might be all we have. Be ready.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
2012-08-02 18:13 ` John W. Linville
@ 2012-08-02 18:50 ` Tim and Alison Bentley
2012-08-06 5:50 ` Mohammed Shafi Shajakhan
0 siblings, 1 reply; 6+ messages in thread
From: Tim and Alison Bentley @ 2012-08-02 18:50 UTC (permalink / raw)
To: ath9k-devel
On 2 August 2012 19:13, John W. Linville <linville@tuxdriver.com> wrote:
> On Thu, Aug 02, 2012 at 07:05:12PM +0100, Tim and Alison Bentley wrote:
> > On 2 August 2012 18:43, Luis R. Rodriguez <rodrigue@qca.qualcomm.com>
> wrote:
> >
> > > On Wed, Aug 1, 2012 at 11:28 PM, Mohammed Shafi Shajakhan
> > > <mohammed@qca.qualcomm.com> wrote:
> > > > From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
> > > >
> > > > AR1111 is same as AR9485. The h/w
> > > > difference between them is quite insignificant,
> > > > Felix suggests only very few baseband features
> > > > may not be available in AR1111. The h/w code for
> > > > AR9485 is already present, so AR1111 should
> > > > work fine with the addition of its PID/VID.
> > > >
> > > > Cc: stable at vger.kernel.org [2.6.39+]
> > > > Cc: Felix Bitterli <felixb@qca.qualcomm.com>
> > > > Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
> > > > Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
> > >
> > > Nice! I'd be happy with this going in once we get a Tested-by: report.
> > > Dan, Tim?
> > >
> > >
> >
> > Will test tomorrow when I have time
>
> Hmmm...well, I just pushed it to wireless.git. I won't push it to
> Dave until sometime tomorrow, to give a chance for some test.
>
> John
> --
> John W. Linville Someday the world will need a hero, and you
> linville at tuxdriver.com might be all we have. Be ready.
>
Have tested patch and can confirm it is fine and works. (Connected now).
Can you amend the reported by and Tested by lines to
Tim Bentley <Tim.Bentley@Gmail.com>
instead of the family email address.
Sorry for any trouble.
--
Tim and Alison Bentley
Home at TRARBentley.net
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20120802/e8dae080/attachment-0001.htm
^ permalink raw reply [flat|nested] 6+ messages in thread
* [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111
2012-08-02 18:50 ` Tim and Alison Bentley
@ 2012-08-06 5:50 ` Mohammed Shafi Shajakhan
0 siblings, 0 replies; 6+ messages in thread
From: Mohammed Shafi Shajakhan @ 2012-08-06 5:50 UTC (permalink / raw)
To: ath9k-devel
Hi Tim/Luis,
On Friday 03 August 2012 12:20 AM, Tim and Alison Bentley wrote:
> On 2 August 2012 19:13, John W. Linville <linville@tuxdriver.com> wrote:
>
>> On Thu, Aug 02, 2012 at 07:05:12PM +0100, Tim and Alison Bentley wrote:
>>> On 2 August 2012 18:43, Luis R. Rodriguez <rodrigue@qca.qualcomm.com>
>> wrote:
>>>
>>>> On Wed, Aug 1, 2012 at 11:28 PM, Mohammed Shafi Shajakhan
>>>> <mohammed@qca.qualcomm.com> wrote:
>>>>> From: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
>>>>>
>>>>> AR1111 is same as AR9485. The h/w
>>>>> difference between them is quite insignificant,
>>>>> Felix suggests only very few baseband features
>>>>> may not be available in AR1111. The h/w code for
>>>>> AR9485 is already present, so AR1111 should
>>>>> work fine with the addition of its PID/VID.
>>>>>
>>>>> Cc: stable at vger.kernel.org [2.6.39+]
>>>>> Cc: Felix Bitterli <felixb@qca.qualcomm.com>
>>>>> Reported-by: Tim and Alison Bentley <Home@trarbentley.net>
>>>>> Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
>>>>
>>>> Nice! I'd be happy with this going in once we get a Tested-by: report.
>>>> Dan, Tim?
>>>>
>>>>
>>>
>>> Will test tomorrow when I have time
>>
>> Hmmm...well, I just pushed it to wireless.git. I won't push it to
>> Dave until sometime tomorrow, to give a chance for some test.
>>
>> John
>> --
>> John W. Linville Someday the world will need a hero, and you
>> linville at tuxdriver.com might be all we have. Be ready.
>>
>
> Have tested patch and can confirm it is fine and works. (Connected now).
> Can you amend the reported by and Tested by lines to
> Tim Bentley <Tim.Bentley@Gmail.com>
> instead of the family email address.
> Sorry for any trouble.
>
thanks for testing this.
--
thanks,
shafi
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-08-06 5:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-02 6:28 [ath9k-devel] [PATCH] ath9k: Add PID/VID support for AR1111 Mohammed Shafi Shajakhan
2012-08-02 17:43 ` Luis R. Rodriguez
2012-08-02 18:05 ` Tim and Alison Bentley
2012-08-02 18:13 ` John W. Linville
2012-08-02 18:50 ` Tim and Alison Bentley
2012-08-06 5:50 ` Mohammed Shafi Shajakhan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox