From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 02:43:07 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66C3A106566C; Mon, 20 Feb 2012 02:43:07 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B03D8FC08; Mon, 20 Feb 2012 02:43:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1K2h7Pk081985; Mon, 20 Feb 2012 02:43:07 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1K2h7Zi081981; Mon, 20 Feb 2012 02:43:07 GMT (envelope-from adrian) Date: Mon, 20 Feb 2012 02:43:07 GMT Message-Id: <201202200243.q1K2h7Zi081981@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/165306: [ath] race conditions between scanning and beacon timeout programming X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 02:43:07 -0000 Synopsis: [ath] race conditions between scanning and beacon timeout programming Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Feb 20 02:42:58 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165306 From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 02:47:32 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0EEE3106566C for ; Mon, 20 Feb 2012 02:47:31 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2441F8FC16 for ; Mon, 20 Feb 2012 02:47:30 +0000 (UTC) Received: by werm13 with SMTP id m13so4686191wer.13 for ; Sun, 19 Feb 2012 18:47:30 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.105 as permitted sender) client-ip=10.180.95.105; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.105 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.95.105]) by 10.180.95.105 with SMTP id dj9mr13269129wib.18.1329706050270 (num_hops = 1); Sun, 19 Feb 2012 18:47:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=7q6FaLBN6WV8T774dhT5DPpL+Bkd4YGdCtDZ6QYxcKI=; b=k6JL7o7dzU5xyr806taks8z2ZLUkTzYabbPxjXzT1KP0MkJ7QC55+/w2vTpm0CV84E jQJtEMxk0tDWAvg1fi6SYH6IBZJi82vp4U2X//ZDsyJvte6r0sfdg94U+JOzrUAVt6a0 gh/MhTucKN5rSUei0bmfnM/72pTR3QZR37SKU= MIME-Version: 1.0 Received: by 10.180.95.105 with SMTP id dj9mr11088164wib.18.1329706050213; Sun, 19 Feb 2012 18:47:30 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Sun, 19 Feb 2012 18:47:30 -0800 (PST) In-Reply-To: <201202200243.q1K2h7Zi081981@freefall.freebsd.org> References: <201202200243.q1K2h7Zi081981@freefall.freebsd.org> Date: Sun, 19 Feb 2012 18:47:30 -0800 X-Google-Sender-Auth: tg698vtCoDW9YYmgQd8HZLP1o6g Message-ID: From: Adrian Chadd To: freebsd-wireless@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: kern/165306: [ath] race conditions between scanning and beacon timeout programming X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 02:47:32 -0000 On 19 February 2012 18:43, wrote: > Synopsis: [ath] race conditions between scanning and beacon timeout programming This bug is ridiculously subtle and took me a while to figure out what was going on. Grr. I'm very tempted to just always flip on the beacon interrupt programming by writing the last known TSF if there was one, then updating it the next time we see a beacon. That way we don't end up in this situation where we never register that the AP has disappeared. Comments? Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 04:26:19 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9ACD4106566C for ; Mon, 20 Feb 2012 04:26:19 +0000 (UTC) (envelope-from nlopes.ml@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5EABF8FC0A for ; Mon, 20 Feb 2012 04:26:19 +0000 (UTC) Received: by iaeo4 with SMTP id o4so9380327iae.13 for ; Sun, 19 Feb 2012 20:26:18 -0800 (PST) Received-SPF: pass (google.com: domain of nlopes.ml@gmail.com designates 10.43.49.201 as permitted sender) client-ip=10.43.49.201; Authentication-Results: mr.google.com; spf=pass (google.com: domain of nlopes.ml@gmail.com designates 10.43.49.201 as permitted sender) smtp.mail=nlopes.ml@gmail.com; dkim=pass header.i=nlopes.ml@gmail.com Received: from mr.google.com ([10.43.49.201]) by 10.43.49.201 with SMTP id vb9mr19967976icb.35.1329711978847 (num_hops = 1); Sun, 19 Feb 2012 20:26:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=1hHu2h8dhHhm3claxav3854rXV9DO1F2Dbcc9Ltk564=; b=AlRK9EElko8yhgDMemCnZZtODIu4dlY8pzUmtYwZTj7O2rfzpWRZjoBOs9u35/q/CX X0IWyR2jyMh4gnuYxyOCRBZSTyv1Ap4hX1RC6ynS++6h14RtHxBt8H4gI23GPr5NeMcs wGW2xQdllu4kWj3UNQxgo9niE8SzggUkrciB4= MIME-Version: 1.0 Received: by 10.43.49.201 with SMTP id vb9mr15863524icb.35.1329710565945; Sun, 19 Feb 2012 20:02:45 -0800 (PST) Received: by 10.42.154.197 with HTTP; Sun, 19 Feb 2012 20:02:45 -0800 (PST) Date: Sun, 19 Feb 2012 20:02:45 -0800 Message-ID: From: Norberto Lopes To: freebsd-wireless@freebsd.org Content-Type: text/plain; charset=UTF-8 Subject: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 04:26:19 -0000 Can anyone tell me if there is support for this card? none2@pci0:8:1:0: class=0x028000 card=0x00671737 chip=0x06011814 rev=0x00 hdr=0x00 vendor = 'Ralink corp.' device = 'RT2800 802.11n PCI' class = network I looked around and saw support for the USB version, but not this exact one. If there is no support, I can provide help as long as someone provides some guidance (I am not very familiar with the wireless code). Any help or hint on kicking this off would be very appreciated. Thank you, Norberto From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 06:09:58 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4215F106566C for ; Mon, 20 Feb 2012 06:09:58 +0000 (UTC) (envelope-from sendtomatt@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0A8458FC08 for ; Mon, 20 Feb 2012 06:09:57 +0000 (UTC) Received: by daec6 with SMTP id c6so6094725dae.13 for ; Sun, 19 Feb 2012 22:09:56 -0800 (PST) Received-SPF: pass (google.com: domain of sendtomatt@gmail.com designates 10.68.242.39 as permitted sender) client-ip=10.68.242.39; Authentication-Results: mr.google.com; spf=pass (google.com: domain of sendtomatt@gmail.com designates 10.68.242.39 as permitted sender) smtp.mail=sendtomatt@gmail.com; dkim=pass header.i=sendtomatt@gmail.com Received: from mr.google.com ([10.68.242.39]) by 10.68.242.39 with SMTP id wn7mr58094389pbc.89.1329718196895 (num_hops = 1); Sun, 19 Feb 2012 22:09:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=0LcJBIximZ24acit65Wcw9xgks9bf2+5+xSUritF0E8=; b=w+IZ8LnO+MrO+EHckWB4MhVomp2zODD/Qv7SdXxQt1IzoCqNIlBJztmv29dRtRTPhO ZNEgoQRuz0FebOY1RxzJXdM63HLM5g6pK9iTia4olZpIq3iRTstpVUCjDyKgjvHL4OAo Gk9PKoeg2NMy4c8mQ1OlRLxlZWnnUDLSxTPRk= Received: by 10.68.242.39 with SMTP id wn7mr47856386pbc.89.1329716778015; Sun, 19 Feb 2012 21:46:18 -0800 (PST) Received: from bakeneko.local ([74.195.19.178]) by mx.google.com with ESMTPS id y9sm23882060pbi.3.2012.02.19.21.46.16 (version=SSLv3 cipher=OTHER); Sun, 19 Feb 2012 21:46:17 -0800 (PST) Message-ID: <4F41DDE8.6060004@gmail.com> Date: Sun, 19 Feb 2012 21:45:12 -0800 From: matt User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.1) Gecko/20120217 Thunderbird/10.0.1 MIME-Version: 1.0 To: Norberto Lopes References: In-Reply-To: X-Enigmail-Version: 1.3.5 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 06:09:58 -0000 On 02/19/12 20:02, Norberto Lopes wrote: > Can anyone tell me if there is support for this card? > > none2@pci0:8:1:0: class=3D0x028000 card=3D0x00671737 chip=3D0x06011814 > rev=3D0x00 hdr=3D0x00 > vendor =3D 'Ralink corp.' > device =3D 'RT2800 802.11n PCI' > class =3D network > > I looked around and saw support for the USB version, but not this exact= one. > If there is no support, I can provide help as long as someone provides > some guidance (I am not very familiar with the wireless code). > > Any help or hint on kicking this off would be very appreciated. > > Thank you, > Norberto > _______________________________________________ > freebsd-wireless@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-wireless > To unsubscribe, send any mail to "freebsd-wireless-unsubscribe@freebsd.= org" There are a couple of experimental versions of the ral driver that cover this chip. OpenBSD's ral driver supports it, ours doesn't. I had a version of our ral with the experimental "rt2800" driver grafted = in. There was a git link posted a few months ago with a better version. As far as I know, both work but are experimental. I have an rt3090 which is similar. If you are interested in helping test, I think the place to start might be that git link that was posted. I just saw that there was no response in december re: ralink. I'd be interested in helping more. I'm not sure if this is the same one: http://repo.or.cz/w/ralink_drivers.= git I have a tarball of my driver around if that doesn't work for you. Matt From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 07:16:41 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3A27D1065670 for ; Mon, 20 Feb 2012 07:16:40 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 80CCA8FC17 for ; Mon, 20 Feb 2012 07:16:40 +0000 (UTC) Received: by werm13 with SMTP id m13so4809772wer.13 for ; Sun, 19 Feb 2012 23:16:39 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.93.4 as permitted sender) client-ip=10.180.93.4; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.93.4 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.93.4]) by 10.180.93.4 with SMTP id cq4mr14473467wib.21.1329722199620 (num_hops = 1); Sun, 19 Feb 2012 23:16:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=cU2b8B3ZF0j/Pz48hTe+h4T3YRl23RjDBqGr8jAe6Ws=; b=M5E0lO3j5MdPJyJ4PjpI7fi+8F/PJiDJ900g7Jyuxq6egF8lOjvKuZV0v0VyRhQBb9 1ltTn/75rhtKjuXj/5gEIVyF/JYxu6krEOvCj4tEdsDcRR9WsC2AaQUkUajzSSLOB8Td yx1Ok1MV8vurGnQTgFKBhZPA3yhZRdXE3GRrQ= MIME-Version: 1.0 Received: by 10.180.93.4 with SMTP id cq4mr12012289wib.21.1329722199549; Sun, 19 Feb 2012 23:16:39 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Sun, 19 Feb 2012 23:16:39 -0800 (PST) In-Reply-To: <4F41DDE8.6060004@gmail.com> References: <4F41DDE8.6060004@gmail.com> Date: Sun, 19 Feb 2012 23:16:39 -0800 X-Google-Sender-Auth: Ub8OGjGGAyraWn3YKEi_Nkpmkok Message-ID: From: Adrian Chadd To: matt Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 07:16:41 -0000 Hiya, Do you have a semi-working driver? If so, let's get it tested and into _a_ freebsd repo. Whether it's in projects or HEAD. I'd rather see it in the freebsd repo then bitrotting anywhere. Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 08:04:43 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C88FE106566B; Mon, 20 Feb 2012 08:04:43 +0000 (UTC) (envelope-from sendtomatt@gmail.com) Received: from mail-pw0-f54.google.com (mail-pw0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 9547A8FC16; Mon, 20 Feb 2012 08:04:42 +0000 (UTC) Received: by pbcxa7 with SMTP id xa7so6720680pbc.13 for ; Mon, 20 Feb 2012 00:04:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding; bh=jn2lZnXkCUxiEJjASV/nwXR6k9LW73qytoZSKfOaIBc=; b=ARsNdQ6FUB3rwYrf62IwuSDSLq2pfzltevmoJVVG7cX5Hbw/yHAJqa0KFTcMyLzGQK WRWI0aPz6MAdb+maCr+LrDAQxWKL52K1O9uTIeWnoE8liRDxHtAd9rmBZNn/t4IRd2Xl x5YzdOmcGKotj0LPAqFpKzxny1riim+mu2vEM= Received: by 10.68.134.198 with SMTP id pm6mr48976194pbb.8.1329725082341; Mon, 20 Feb 2012 00:04:42 -0800 (PST) Received: from bakeneko.local ([74.195.19.178]) by mx.google.com with ESMTPS id j3sm12593483pbb.29.2012.02.20.00.04.39 (version=SSLv3 cipher=OTHER); Mon, 20 Feb 2012 00:04:41 -0800 (PST) Message-ID: <4F41FE57.20108@gmail.com> Date: Mon, 20 Feb 2012 00:03:35 -0800 From: matt User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.1) Gecko/20120217 Thunderbird/10.0.1 MIME-Version: 1.0 To: Adrian Chadd References: <4F41DDE8.6060004@gmail.com> In-Reply-To: X-Enigmail-Version: 1.3.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 08:04:43 -0000 On 02/19/12 23:16, Adrian Chadd wrote: > Hiya, > > Do you have a semi-working driver? If so, let's get it tested and into > _a_ freebsd repo. Whether it's in projects or HEAD. > > I'd rather see it in the freebsd repo then bitrotting anywhere. > > > > Adrian I will go back to hacking at this/these and see which one works best. I was quite busy a while back and it seemed as though there was another angle of development happening...I guess not? I have the old one, which works, but I will look at the other one in git as well. I'll take a look and see if I can break either one. All I have is my RT3090 1T1R 2.4ghz only (n150)...If anyone has the "nicer" ones or the older ones like rt2800 they'd be worth testing as well. Matt From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 08:31:53 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 74D5C106564A for ; Mon, 20 Feb 2012 08:31:53 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id F31F38FC19 for ; Mon, 20 Feb 2012 08:31:52 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4344856wib.13 for ; Mon, 20 Feb 2012 00:31:51 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.181.11.227 as permitted sender) client-ip=10.181.11.227; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.181.11.227 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.181.11.227]) by 10.181.11.227 with SMTP id el3mr14918743wid.18.1329726711973 (num_hops = 1); Mon, 20 Feb 2012 00:31:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=CftNPBDXW9C379J4UHVVtK25xZH3aYtno4lRIiw5ZP8=; b=x+ej3n92XBdh32FpyoFJCYZnRn6+YjeyK/nsY1aEwJmsica5XbjtpwDTilqxBmA/pP iI4WmGTvRggxJwg2qz11AoDAPZE+JsRLRWE2J1e+v0VjVAv3cRN46lNR80TQkcKuim6f x452sj/Ta8swdZEVR7cttVfgH5Wnu93NtEmpQ= MIME-Version: 1.0 Received: by 10.181.11.227 with SMTP id el3mr12382396wid.18.1329726711884; Mon, 20 Feb 2012 00:31:51 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Mon, 20 Feb 2012 00:31:51 -0800 (PST) In-Reply-To: References: <1328727803.90839.15.camel@firkin.mischler.com> Date: Mon, 20 Feb 2012 00:31:51 -0800 X-Google-Sender-Auth: xoV50wZCWW5elHiW1w4CLitidaY Message-ID: From: Adrian Chadd To: jake@mischler.com Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-wireless@freebsd.org Subject: Re: No WiFi on Acer Aspire One 751h X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 08:31:53 -0000 Hiya, On 16 February 2012 22:58, Adrian Chadd wrote: > I've found an AR5BHB63 here (and I have AR9285's here); I'll try this > out for you tomorrow in my eeepc. The AR9285 works fine for me. I'll try the AR5BHB63 (I have both full and half height) tomorrow. Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 11:07:19 2012 Return-Path: Delivered-To: freebsd-wireless@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 994581065670 for ; Mon, 20 Feb 2012 11:07:19 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7ECD98FC0C for ; Mon, 20 Feb 2012 11:07:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KB7JSk090303 for ; Mon, 20 Feb 2012 11:07:19 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KB7IuO090301 for freebsd-wireless@FreeBSD.org; Mon, 20 Feb 2012 11:07:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Feb 2012 11:07:18 GMT Message-Id: <201202201107.q1KB7IuO090301@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-wireless@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-wireless@FreeBSD.org X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 11:07:19 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/165306 wireless [ath] race conditions between scanning and beacon time o kern/165220 wireless [ath] "ath_rx_tasklet: sc_inreset_cnt > 0; skipping" m o kern/165214 wireless [ieee80211] Kernel panic in ieee80211_output.c:2505 o kern/165149 wireless [ath] [net80211] Ping with data length more than iv_fr o kern/165146 wireless [net80211] Net802.11 Fragment number is assigned 1 (sh o kern/165060 wireless [ath] vap->iv_bss race conditions causing crashes insi o kern/165021 wireless [ath] ath device timeout during scan/attach, if wlan_c o kern/164721 wireless [ath] ath device timeouts o kern/164499 wireless [wi] [patch] if_wi needs fix for big endian architectu o kern/164382 wireless [ath] crash when down/deleting a vap - inside ieee8021 o kern/164365 wireless [iwi] iwi0: UP/DOWN in o bin/164102 wireless hostapd not configured for 802.11n o kern/163759 wireless [ath] ath(4) "stops working" in hostap mode o kern/163724 wireless [mwl] [patch] NULL check before dereference o kern/163719 wireless [ath] ath interface do not receive multicast o kern/163689 wireless [ath] TX timeouts when sending probe/mgmt frames durin o kern/163574 wireless [net80211] overly-frequent HT occupancy changes o kern/163573 wireless [ath] hostap mode TX buffer hang o kern/163559 wireless [ath] kernel panic AH_DEBUG o kern/163318 wireless [ath] ath(4) stops working p kern/163312 wireless [panic] [ath driver] kernel panic: page fault with ath o kern/163082 wireless [ath] ar9285 diversity fixes o kern/162648 wireless [ath] AR9227 ADC DC calibration failure o kern/162647 wireless [ath] 11n TX aggregation session / TX hang o kern/161293 wireless [iwn] hang at startup when starting network o kern/161035 wireless [ieee80211] Incorrect number describing 11ng MCS rate o kern/160391 wireless [ieee80211] [patch] Panic in mesh mode o kern/160296 wireless [zyd] [panic] 802.11 usb device reboots system on 'ifc o misc/160176 wireless [mips] [panic] Kernel panic on AR7161 platform with AR o kern/157449 wireless [ath] MAC address conflict causes system to freeze o kern/157243 wireless [ath] investigate beacon TX (AP) / RX (STA) when under o kern/156904 wireless [ath] AR9285 antenna diversity algorithm is buggy and o kern/156884 wireless [ath] ath instablity o kern/156327 wireless [bwn] bwn driver causes 20%-50% packet loss o kern/156322 wireless [wpi] no ahdemo support for if_wpi o kern/156321 wireless [ath] ahdemo doesn't work with if_ath o kern/155498 wireless [ral] ral(4) needs to be resynced with OpenBSD's to ga o kern/155100 wireless [ath] ath driver on busy channel: "stuck beacon" p kern/154598 wireless [ath] Atheros 5424/2424 can't connect to WPA network o kern/154567 wireless [ath] ath(4) lot of bad series(0) o kern/154327 wireless [ath] AR5416 in station mode hangs when transmitting f o kern/154284 wireless [ath] Modern ath wifi cards (such as AR9285) have miss o kern/154153 wireless [ath] AR5213 + MIPS + WPA group key packet corruption o kern/153448 wireless [ath] ath networking device loses association after a o kern/152750 wireless [ath] ath0 lot of bad series hwrate o kern/151198 wireless [ath] ath/5416 fails bgscan with "ath0: ath_chan_set: o kern/149786 wireless [bwn] bwn on Dell Inspiron 1150: connections stall o kern/149516 wireless [ath] ath(4) hostap with fake MAC/BSSID results in sta o kern/149373 wireless [realtek/atheros]: None of my network card working o kern/148322 wireless [ath] Triggering atheros wifi beacon misses in hostap o kern/148317 wireless [ath] FreeBSD 7.x hostap memory leak in net80211 or At o kern/148078 wireless [ath] wireless networking stops functioning o kern/145826 wireless [panic] [ath] Unable to configure adhoc mode on ath0/w o kern/144987 wireless [wpi] [panic] injecting packets with wlaninject using o bin/144109 wireless hostapd(8) uses the MAC of the wireless interface, but o conf/143079 wireless hostapd(8) startup missing multi wlan functionality p kern/140567 wireless [ath] [patch] ath is not worked on my notebook PC o kern/140245 wireless [ath] [panic] Kernel panic during network activity on o kern/137592 wireless [ath] panic - 7-STABLE (Aug 7, 2009 UTC) crashes on ne p bin/137484 wireless [patch] Integer overflow in wpa_supplicant(8) base64 e o kern/136943 wireless [wpi] [lor] wpi0_com_lock / wpi0 o kern/136836 wireless [ath] atheros card stops functioning after about 12 ho o kern/132722 wireless [ath] Wifi ath0 associates fine with AP, but DHCP or I o bin/131549 wireless ifconfig(8) can't clear 'monitor' mode on the wireless o kern/126475 wireless [ath] [panic] ath pcmcia card inevitably panics under o kern/125721 wireless [ath] Terrible throughput/high ping latency with Ubiqu o kern/125617 wireless [ath] [panic] ath(4) related panic o kern/125501 wireless [ath] atheros cardbus driver hangs o kern/125332 wireless [ath] [panic] crash under any non-tiny networking unde o kern/124767 wireless [iwi] Wireless connection using iwi0 driver (Intel 220 o kern/124753 wireless [ieee80211] net80211 discards power-save queue packets o docs/120456 wireless ath(4) needs to specify requirement on wlan_scan_sta o kern/119513 wireless [ath] [irq] inserting dlink dwl-g630 wireless card res o kern/116747 wireless [ndis] FreeBSD 7.0-CURRENT crash with Dell TrueMobile f kern/105348 wireless [ath] ath device stopps TX 75 problems total. From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 11:47:17 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0966E106564A for ; Mon, 20 Feb 2012 11:47:17 +0000 (UTC) (envelope-from jake@mischler.com) Received: from teaspoon.mischlersflorist.com (rrcs-72-45-221-198.nys.biz.rr.com [72.45.221.198]) by mx1.freebsd.org (Postfix) with ESMTP id A127D8FC12 for ; Mon, 20 Feb 2012 11:47:16 +0000 (UTC) Received: from [192.168.254.253] ([192.168.254.253]) by teaspoon.mischlersflorist.com (8.14.5/8.14.4) with ESMTP id q1KBlEEi069993; Mon, 20 Feb 2012 06:47:14 -0500 (EST) (envelope-from jake@mischler.com) From: Dave Mischler To: Adrian Chadd Content-Type: text/plain; charset="us-ascii" Date: Mon, 20 Feb 2012 06:47:13 -0500 Message-ID: <1329738434.46236.5.camel@barrel.mischler.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-wireless@freebsd.org Subject: Re: No WiFi on Acer Aspire One 751h X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jake@mischler.com List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 11:47:17 -0000 > > I've found an AR5BHB63 here (and I have AR9285's here); I'll try this > > out for you tomorrow in my eeepc. > > The AR9285 works fine for me. I'll try the AR5BHB63 (I have both full > and half height) tomorrow. I am not surprised that these are working on your eeepc. I have been under the assumption from the start that my problem relates to the specific model Acer netbook that I have, or perhaps a related group of products. But I admire your persistence in covering the bases to prove it isn't another problem. Thanks. From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 12:59:49 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C5871065672 for ; Mon, 20 Feb 2012 12:59:49 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id ADA108FC18 for ; Mon, 20 Feb 2012 12:59:48 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so4561100wib.13 for ; Mon, 20 Feb 2012 04:59:47 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) client-ip=10.180.95.1; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.95.1]) by 10.180.95.1 with SMTP id dg1mr16878354wib.21.1329742787820 (num_hops = 1); Mon, 20 Feb 2012 04:59:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=9fpwBfrJtnruptOohHNHKHCU4GDnRrPAbe2CdeiCS1c=; b=KRkHsIH+fykd3ESL1IqH/26I5LdskH/M6zl1dzFN94wkit85PPb7ACE3fiTdMR6U+Q Z0cD26kPUoGIktFmJJ5N0ktf/CdAeHSq8kclemKeaef9VigWOULMop2LAjT1qf7S13qL fCU57qK0DP/IVsUBe9or4sjwoRsJEyy0I7IvY= MIME-Version: 1.0 Received: by 10.180.95.1 with SMTP id dg1mr14007076wib.21.1329742786275; Mon, 20 Feb 2012 04:59:46 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Mon, 20 Feb 2012 04:59:46 -0800 (PST) In-Reply-To: <1329738434.46236.5.camel@barrel.mischler.com> References: <1329738434.46236.5.camel@barrel.mischler.com> Date: Mon, 20 Feb 2012 04:59:46 -0800 X-Google-Sender-Auth: WrckHiRgB0mH69zAXYWQHeGlqPg Message-ID: From: Adrian Chadd To: jake@mischler.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-wireless@freebsd.org Subject: Re: No WiFi on Acer Aspire One 751h X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 12:59:49 -0000 Would you mind creating a PR please and dumping everything from this email thread into it? I'll then give you some further debugging to try and do. Thanks! adrian On 20 February 2012 03:47, Dave Mischler wrote: >> > I've found an AR5BHB63 here (and I have AR9285's here); I'll try this >> > out for you tomorrow in my eeepc. >> >> The AR9285 works fine for me. I'll try the AR5BHB63 (I have both full >> and half height) tomorrow. > > I am not surprised that these are working on your eeepc. =A0I have been u= nder the assumption from the start that my problem relates to the specific = model Acer netbook that I have, or perhaps a related group of products. =A0= But I admire your persistence in covering the bases to prove it isn't anoth= er problem. =A0Thanks. > > > _______________________________________________ > freebsd-wireless@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-wireless > To unsubscribe, send any mail to "freebsd-wireless-unsubscribe@freebsd.or= g" From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 13:16:39 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 80E2B1065759; Mon, 20 Feb 2012 13:16:39 +0000 (UTC) (envelope-from jake@mischler.com) Received: from teaspoon.mischlersflorist.com (rrcs-72-45-221-198.nys.biz.rr.com [72.45.221.198]) by mx1.freebsd.org (Postfix) with ESMTP id 256848FC15; Mon, 20 Feb 2012 13:16:38 +0000 (UTC) Received: from [192.168.163.29] ([192.168.163.29]) by teaspoon.mischlersflorist.com (8.14.5/8.14.4) with ESMTP id q1KDGbO7075356; Mon, 20 Feb 2012 08:16:37 -0500 (EST) (envelope-from jake@mischler.com) From: Dave Mischler To: Adrian Chadd Content-Type: text/plain; charset="us-ascii" Date: Mon, 20 Feb 2012 08:16:37 -0500 Message-ID: <1329743797.35770.6.camel@firkin.mischler.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-wireless@freebsd.org Subject: Re: No WiFi on Acer Aspire One 751h X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jake@mischler.com List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 13:16:39 -0000 > Would you mind creating a PR please and dumping everything from this > email thread into it? I created kern/165212 last Thursday as you requested. Do you want me to add the information I think is pertinent to that PR, or stick in the actual email messages from this thread? From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 13:19:59 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 17AA41065670; Mon, 20 Feb 2012 13:19:59 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E35B68FC0C; Mon, 20 Feb 2012 13:19:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KDJwHL019541; Mon, 20 Feb 2012 13:19:58 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KDJwLq019537; Mon, 20 Feb 2012 13:19:58 GMT (envelope-from adrian) Date: Mon, 20 Feb 2012 13:19:58 GMT Message-Id: <201202201319.q1KDJwLq019537@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 13:19:59 -0000 Old Synopsis: No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) New Synopsis: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Mon Feb 20 13:19:43 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165212 From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 13:20:16 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75DA01065686 for ; Mon, 20 Feb 2012 13:20:16 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id F415C8FC08 for ; Mon, 20 Feb 2012 13:20:15 +0000 (UTC) Received: by werm13 with SMTP id m13so5093667wer.13 for ; Mon, 20 Feb 2012 05:20:15 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) client-ip=10.180.95.1; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.95.1]) by 10.180.95.1 with SMTP id dg1mr17034463wib.21.1329744015156 (num_hops = 1); Mon, 20 Feb 2012 05:20:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=BdnJsz6/VozCmDAGd/6qR+eST7S3eljlqU3/y3RJQuE=; b=rB4Ze8EmIBV74ivfAXyhFeZkKaTXD4zs6cJ1y8yc6zxnjoTh4R4f91wBNFnvV2b9Fx JdFEBsRj09YbiFJFsgkseZBBW3exfEUH8oY3k5GsxhSt2tSfasGj/reO+Tk1bZzzleTn Ev+GoJbVqKcvhSrNh6+qDsVN4s+LUNTmR/c/0= MIME-Version: 1.0 Received: by 10.180.95.1 with SMTP id dg1mr14137438wib.21.1329744015087; Mon, 20 Feb 2012 05:20:15 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Mon, 20 Feb 2012 05:20:15 -0800 (PST) In-Reply-To: <1329743797.35770.6.camel@firkin.mischler.com> References: <1329743797.35770.6.camel@firkin.mischler.com> Date: Mon, 20 Feb 2012 05:20:15 -0800 X-Google-Sender-Auth: MY73NSumUzHgbf65tTbQDU8yJzM Message-ID: From: Adrian Chadd To: jake@mischler.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-wireless@freebsd.org Subject: Re: No WiFi on Acer Aspire One 751h X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 13:20:16 -0000 On 20 February 2012 05:16, Dave Mischler wrote: > >> Would you mind creating a PR please and dumping everything from this >> email thread into it? > > I created kern/165212 last Thursday as you requested. =A0Do you want me t= o add the information I think is pertinent to that PR, or stick in the actu= al email messages from this thread? Ah, let me make sure it's assigned to us .. there. I'll reply to the bug. :) Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 13:30:17 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 77E86106566C for ; Mon, 20 Feb 2012 13:30:17 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9758FC13 for ; Mon, 20 Feb 2012 13:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KDUH1p028337 for ; Mon, 20 Feb 2012 13:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KDUHcW028334; Mon, 20 Feb 2012 13:30:17 GMT (envelope-from gnats) Date: Mon, 20 Feb 2012 13:30:17 GMT Message-Id: <201202201330.q1KDUHcW028334@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: Adrian Chadd Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adrian Chadd List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 13:30:17 -0000 The following reply was made to PR kern/165212; it has been noted by GNATS. From: Adrian Chadd To: bug-followup@freebsd.org, jake@mischler.com Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Date: Mon, 20 Feb 2012 05:24:42 -0800 Hi, Let's see if you're actually _getting_ interrupts. sysctl dev.ath.0.debug=0x1000 sysctl hw.ath.hal.debug=0x80000 .. then let's see what is logged in dmesg. Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 16:24:35 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 007901065674; Mon, 20 Feb 2012 16:24:35 +0000 (UTC) (envelope-from jake@mischler.com) Received: from teaspoon.mischlersflorist.com (rrcs-72-45-221-198.nys.biz.rr.com [72.45.221.198]) by mx1.freebsd.org (Postfix) with ESMTP id B549F8FC12; Mon, 20 Feb 2012 16:24:33 +0000 (UTC) Received: from [192.168.163.29] ([192.168.163.29]) by teaspoon.mischlersflorist.com (8.14.5/8.14.4) with ESMTP id q1KGOWFX086650; Mon, 20 Feb 2012 11:24:32 -0500 (EST) (envelope-from jake@mischler.com) From: Dave Mischler To: Adrian Chadd Content-Type: multipart/mixed; boundary="=-QmZ1nJS1KDEuFgTTevb8" Date: Mon, 20 Feb 2012 11:24:31 -0500 Message-ID: <1329755071.36022.11.camel@firkin.mischler.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Cc: freebsd-wireless@freebsd.org Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jake@mischler.com List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 16:24:35 -0000 --=-QmZ1nJS1KDEuFgTTevb8 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit > Let's see if you're actually _getting_ interrupts. > > sysctl dev.ath.0.debug=0x1000 > sysctl hw.ath.hal.debug=0x80000 > > .. then let's see what is logged in dmesg. OK. I've attached a log that includes the whole boot process and almost a minute of bringing up the interface and letting it scan. I wouldn't normally dump this much log on you but I'm not sure exactly what you might need to see. --=-QmZ1nJS1KDEuFgTTevb8 Content-Disposition: attachment; filename="messages" Content-Type: text/plain; name="messages"; charset="us-ascii" Content-Transfer-Encoding: 7bit Feb 20 16:11:25 halfpint syslogd: kernel boot file is /boot/kernel/kernel Feb 20 16:11:25 halfpint kernel: Copyright (c) 1992-2012 The FreeBSD Project. Feb 20 16:11:25 halfpint kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Feb 20 16:11:25 halfpint kernel: The Regents of the University of California. All rights reserved. Feb 20 16:11:25 halfpint kernel: FreeBSD is a registered trademark of The FreeBSD Foundation. Feb 20 16:11:25 halfpint kernel: FreeBSD 10.0-CURRENT #0: Mon Feb 20 15:42:47 UTC 2012 Feb 20 16:11:25 halfpint kernel: mischler@:/usr/obj/usr/src/sys/HALFPINT i386 Feb 20 16:11:25 halfpint kernel: WARNING: WITNESS option enabled, expect reduced performance. Feb 20 16:11:25 halfpint kernel: CPU: Intel(R) Atom(TM) CPU Z520 @ 1.33GHz (1240.93-MHz 686-class CPU) Feb 20 16:11:25 halfpint kernel: Origin = "GenuineIntel" Id = 0x106c2 Family = 6 Model = 1c Stepping = 2 Feb 20 16:11:25 halfpint kernel: Features=0xbfe9fbff Feb 20 16:11:25 halfpint kernel: Features2=0x40c3bd Feb 20 16:11:25 halfpint kernel: AMD Features=0x100000 Feb 20 16:11:25 halfpint kernel: AMD Features2=0x1 Feb 20 16:11:25 halfpint kernel: TSC: P-state invariant, performance statistics Feb 20 16:11:25 halfpint kernel: real memory = 2147483648 (2048 MB) Feb 20 16:11:25 halfpint kernel: avail memory = 2072403968 (1976 MB) Feb 20 16:11:25 halfpint kernel: Event timer "LAPIC" quality 400 Feb 20 16:11:25 halfpint kernel: ACPI APIC Table: Feb 20 16:11:25 halfpint kernel: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs Feb 20 16:11:25 halfpint kernel: FreeBSD/SMP: 1 package(s) x 1 core(s) x 2 HTT threads Feb 20 16:11:25 halfpint kernel: cpu0 (BSP): APIC ID: 0 Feb 20 16:11:25 halfpint kernel: cpu1 (AP/HT): APIC ID: 1 Feb 20 16:11:25 halfpint kernel: ioapic0 irqs 0-23 on motherboard Feb 20 16:11:25 halfpint kernel: kbd1 at kbdmux0 Feb 20 16:11:25 halfpint kernel: acpi0: on motherboard Feb 20 16:11:25 halfpint kernel: ACPI Error: Could not enable PowerButton event (20120215/evxfevnt-217) Feb 20 16:11:25 halfpint kernel: ACPI Warning: Could not enable fixed event 0x2 (20120215/evxface-575) Feb 20 16:11:25 halfpint kernel: acpi0: Power Button (fixed) Feb 20 16:11:25 halfpint kernel: acpi0: reservation of 3f800000, 70800000 (3) failed Feb 20 16:11:25 halfpint kernel: cpu0: on acpi0 Feb 20 16:11:25 halfpint kernel: cpu1: on acpi0 Feb 20 16:11:25 halfpint kernel: hpet0: iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0 Feb 20 16:11:25 halfpint kernel: Timecounter "HPET" frequency 14318180 Hz quality 950 Feb 20 16:11:25 halfpint kernel: Event timer "HPET" frequency 14318180 Hz quality 450 Feb 20 16:11:25 halfpint kernel: Event timer "HPET1" frequency 14318180 Hz quality 440 Feb 20 16:11:25 halfpint kernel: Event timer "HPET2" frequency 14318180 Hz quality 440 Feb 20 16:11:25 halfpint kernel: atrtc0: port 0x70-0x73 on acpi0 Feb 20 16:11:25 halfpint kernel: atrtc0: Warning: Couldn't map I/O. Feb 20 16:11:25 halfpint kernel: Event timer "RTC" frequency 32768 Hz quality 0 Feb 20 16:11:25 halfpint kernel: attimer0: port 0x40-0x43 on acpi0 Feb 20 16:11:25 halfpint kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Feb 20 16:11:25 halfpint kernel: Event timer "i8254" frequency 1193182 Hz quality 100 Feb 20 16:11:25 halfpint kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 Feb 20 16:11:25 halfpint kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_ec0: port 0x62,0x66 on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_acad0: on acpi0 Feb 20 16:11:25 halfpint kernel: battery0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_lid0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_button0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_button1: on acpi0 Feb 20 16:11:25 halfpint kernel: pcib0: port 0xcf8-0xcff on acpi0 Feb 20 16:11:25 halfpint kernel: pci0: on pcib0 Feb 20 16:11:25 halfpint kernel: vgapci0: port 0x1800-0x1807 mem 0xb0080000-0xb00fffff,0xc0000000-0xcfffffff,0xb0000000-0xb003ffff irq 16 at device 2.0 on pci0 Feb 20 16:11:25 halfpint kernel: hdac0: mem 0xb0050000-0xb0053fff irq 22 at device 27.0 on pci0 Feb 20 16:11:25 halfpint kernel: pcib1: irq 17 at device 28.0 on pci0 Feb 20 16:11:25 halfpint kernel: pci2: on pcib1 Feb 20 16:11:25 halfpint kernel: re0: port 0x2000-0x20ff mem 0xd0110000-0xd0110fff,0xd0100000-0xd010ffff irq 16 at device 0.0 on pci2 Feb 20 16:11:25 halfpint kernel: re0: Using 1 MSI-X message Feb 20 16:11:25 halfpint kernel: re0: Chip rev. 0x24800000 Feb 20 16:11:25 halfpint kernel: re0: MAC rev. 0x00400000 Feb 20 16:11:25 halfpint kernel: miibus0: on re0 Feb 20 16:11:25 halfpint kernel: rlphy0: PHY 1 on miibus0 Feb 20 16:11:25 halfpint kernel: rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow Feb 20 16:11:25 halfpint kernel: re0: Ethernet address: 00:23:8b:b1:1b:92 Feb 20 16:11:25 halfpint kernel: pcib2: irq 16 at device 28.1 on pci0 Feb 20 16:11:25 halfpint kernel: pci3: on pcib2 Feb 20 16:11:25 halfpint kernel: ath0: mem 0xd0000000-0xd000ffff irq 17 at device 0.0 on pci3 Feb 20 16:11:25 halfpint kernel: ath0: AR2425 mac 14.2 RF5424 phy 7.0 Feb 20 16:11:25 halfpint kernel: ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00a2 Feb 20 16:11:25 halfpint kernel: uhci0: port 0x1820-0x183f irq 23 at device 29.0 on pci0 Feb 20 16:11:25 halfpint kernel: uhci0: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus0: on uhci0 Feb 20 16:11:25 halfpint kernel: uhci1: port 0x1840-0x185f irq 19 at device 29.1 on pci0 Feb 20 16:11:25 halfpint kernel: uhci1: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus1: on uhci1 Feb 20 16:11:25 halfpint kernel: uhci2: port 0x1860-0x187f irq 18 at device 29.2 on pci0 Feb 20 16:11:25 halfpint kernel: uhci2: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus2: on uhci2 Feb 20 16:11:25 halfpint kernel: ehci0: mem 0xb0054000-0xb00543ff irq 21 at device 29.7 on pci0 Feb 20 16:11:25 halfpint kernel: usbus3: EHCI version 1.0 Feb 20 16:11:25 halfpint kernel: usbus3: on ehci0 Feb 20 16:11:25 halfpint kernel: isab0: at device 31.0 on pci0 Feb 20 16:11:25 halfpint kernel: isa0: on isab0 Feb 20 16:11:25 halfpint kernel: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1810-0x181f at device 31.1 on pci0 Feb 20 16:11:25 halfpint kernel: ata0: at channel 0 on atapci0 Feb 20 16:11:25 halfpint kernel: acpi_tz0: on acpi0 Feb 20 16:11:25 halfpint kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 Feb 20 16:11:25 halfpint kernel: atkbd0: irq 1 on atkbdc0 Feb 20 16:11:25 halfpint kernel: kbd0 at atkbd0 Feb 20 16:11:25 halfpint kernel: atkbd0: [GIANT-LOCKED] Feb 20 16:11:25 halfpint kernel: psm0: irq 12 on atkbdc0 Feb 20 16:11:25 halfpint kernel: psm0: [GIANT-LOCKED] Feb 20 16:11:25 halfpint kernel: psm0: model Generic PS/2 mouse, device ID 0 Feb 20 16:11:25 halfpint kernel: pmtimer0 on isa0 Feb 20 16:11:25 halfpint kernel: orm0: at iomem 0xce800-0xcf7ff,0xe0000-0xe17ff pnpid ORM0000 on isa0 Feb 20 16:11:25 halfpint kernel: sc0: at flags 0x100 on isa0 Feb 20 16:11:25 halfpint kernel: sc0: VGA <16 virtual consoles, flags=0x300> Feb 20 16:11:25 halfpint kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Feb 20 16:11:25 halfpint kernel: fdc0: No FDOUT register! Feb 20 16:11:25 halfpint kernel: ppc0: parallel port not found. Feb 20 16:11:25 halfpint kernel: ctl: CAM Target Layer loaded Feb 20 16:11:25 halfpint kernel: est0: on cpu0 Feb 20 16:11:25 halfpint kernel: p4tcc0: on cpu0 Feb 20 16:11:25 halfpint kernel: est1: on cpu1 Feb 20 16:11:25 halfpint kernel: p4tcc1: on cpu1 Feb 20 16:11:25 halfpint kernel: Timecounters tick every 1.000 msec Feb 20 16:11:25 halfpint kernel: hdacc0: at cad 0 on hdac0 Feb 20 16:11:25 halfpint kernel: hdaa0: at nid 1 on hdacc0 Feb 20 16:11:25 halfpint kernel: pcm0: at nid 20,33 and 24 on hdaa0 Feb 20 16:11:25 halfpint kernel: pcm1: at nid 18 on hdaa0 Feb 20 16:11:25 halfpint kernel: usbus0: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus1: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus2: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus3: 480Mbps High Speed USB v2.0 Feb 20 16:11:25 halfpint kernel: ugen0.1: at usbus0 Feb 20 16:11:25 halfpint kernel: uhub0: on usbus0 Feb 20 16:11:25 halfpint kernel: ugen1.1: at usbus1 Feb 20 16:11:25 halfpint kernel: uhub1: on usbus1 Feb 20 16:11:25 halfpint kernel: ugen2.1: at usbus2 Feb 20 16:11:25 halfpint kernel: uhub2: on usbus2 Feb 20 16:11:25 halfpint kernel: ugen3.1: at usbus3 Feb 20 16:11:25 halfpint kernel: uhub3: on usbus3 Feb 20 16:11:25 halfpint kernel: uhub0: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub1: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub2: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub3: 8 ports with 8 removable, self powered Feb 20 16:11:25 halfpint kernel: ada0 at ata0 bus 0 scbus0 target 0 lun 0 Feb 20 16:11:25 halfpint kernel: ada0: ATA-8 SATA 2.x device Feb 20 16:11:25 halfpint kernel: ada0: 100.000MB/s transfers (UDMA5, PIO 8192bytes) Feb 20 16:11:25 halfpint kernel: ada0: 238475MB (488397168 512 byte sectors: 16H 63S/T 16383C) Feb 20 16:11:25 halfpint kernel: ada0: Previously was known as ad0 Feb 20 16:11:25 halfpint kernel: SMP: AP CPU #1 Launched! Feb 20 16:11:25 halfpint kernel: WARNING: WITNESS option enabled, expect reduced performance. Feb 20 16:11:25 halfpint kernel: Root mount waiting for: usbus3 Feb 20 16:11:25 halfpint kernel: ugen3.2: at usbus3 Feb 20 16:11:25 halfpint kernel: Trying to mount root from ufs:/dev/ada0p2 [rw]... Feb 20 16:11:27 halfpint kernel: . Feb 20 16:12:03 halfpint login: ROOT LOGIN (root) ON ttyv1 Feb 20 16:12:49 halfpint kernel: wlan0: Ethernet address: 00:24:2c:5d:ed:55 Feb 20 16:13:03 halfpint kernel: ath0: ath_init: if_flags 0x8803 Feb 20 16:13:03 halfpint kernel: ath0: ath_stop_locked: invalid 0 if_flags 0x8803 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:03 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:03 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:03 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:03 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:03 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:03 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:04 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:04 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:04 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:04 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:05 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:05 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:05 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:05 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:06 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:06 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:06 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:06 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:08 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:08 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:08 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:08 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:09 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:09 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:09 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:09 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:11 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:11 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:11 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:11 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:12 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:12 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:12 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:12 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:14 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:14 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:14 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:14 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:15 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:15 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:15 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:15 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:17 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:17 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:17 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:17 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:18 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:18 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:18 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:18 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:19 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:19 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:19 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:19 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:21 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:21 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:21 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:21 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:22 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:22 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:22 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:22 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:24 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:24 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:24 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:24 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:25 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:25 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:25 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:25 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:26 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:26 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:26 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:26 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:28 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:28 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:28 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:28 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:29 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:29 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:29 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:29 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: TSF moved while trying to set quiet time TSF: 0x08b4a7fe Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:31 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:31 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:31 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:31 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:32 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:32 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:32 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:32 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:33 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:33 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:33 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:33 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:35 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:35 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:35 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:35 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:36 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:36 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:36 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:36 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:38 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:38 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:38 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:38 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:39 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:39 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:39 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:39 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:41 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:41 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:41 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:41 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:42 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:42 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:42 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:42 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:44 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:44 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:44 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:44 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:45 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:45 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:45 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:45 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:47 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:47 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:47 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:47 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:48 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:48 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:48 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:48 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:50 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:50 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:50 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:50 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:51 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:51 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:51 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:51 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x40001071 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:53 halfpint kernel: ath0: ath_stop_locked: invalid 0 if_flags 0x8802 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x40001071 => 0x0 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:53 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:53 halfpint kernel: AR_DIAG_SW=0x00000020 --=-QmZ1nJS1KDEuFgTTevb8-- From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 19:00:01 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7C891106564A for ; Mon, 20 Feb 2012 19:00:01 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 004128FC1D for ; Mon, 20 Feb 2012 19:00:00 +0000 (UTC) Received: by werm13 with SMTP id m13so5389616wer.13 for ; Mon, 20 Feb 2012 10:59:58 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.181.11.227 as permitted sender) client-ip=10.181.11.227; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.181.11.227 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.181.11.227]) by 10.181.11.227 with SMTP id el3mr19400664wid.18.1329764398838 (num_hops = 1); Mon, 20 Feb 2012 10:59:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=aTwPjckC/20+oXlw1dYGpcP7nFjDeZEpH3lho4Y4bqM=; b=d0/CljySIEwyRsPN6B3V1tz5SipeDIc3NSmkXeBgCnTCVCOSH7gcFB4eS/l4rMONdd PTX6oVwxjPL54e2646YNLB91Pqr8oLRT5xHXXAkw7jOJxvW8S3hhRquMA2aprhyF0LFy PZsfYi+z9nRaLD/ASwdXE74h48ClFM20b1nX8= MIME-Version: 1.0 Received: by 10.181.11.227 with SMTP id el3mr16097434wid.18.1329764398784; Mon, 20 Feb 2012 10:59:58 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Mon, 20 Feb 2012 10:59:58 -0800 (PST) In-Reply-To: <1329755071.36022.11.camel@firkin.mischler.com> References: <1329755071.36022.11.camel@firkin.mischler.com> Date: Mon, 20 Feb 2012 10:59:58 -0800 X-Google-Sender-Auth: 4p-pvdpOyxtvxBTIACTi8T1snfE Message-ID: From: Adrian Chadd To: jake@mischler.com Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-wireless@freebsd.org Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 19:00:01 -0000 Hi, can you attach this to the PR too? There's no errors here, it's just not RX'ing anything. Is there an rfkill switch/button? (ie, some button that enables/disables wifi?) It may be a function switch? Have you loaded the relevant ACPI module for your laptop (which sometimes maps the rfkill line to ACPI somehow, I don't know the real details.) Thanks, Adrian From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 20:16:20 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD29F106564A; Mon, 20 Feb 2012 20:16:20 +0000 (UTC) (envelope-from jake@mischler.com) Received: from teaspoon.mischlersflorist.com (rrcs-72-45-221-198.nys.biz.rr.com [72.45.221.198]) by mx1.freebsd.org (Postfix) with ESMTP id 71BA18FC12; Mon, 20 Feb 2012 20:16:19 +0000 (UTC) Received: from [192.168.163.29] ([192.168.163.29]) by teaspoon.mischlersflorist.com (8.14.5/8.14.4) with ESMTP id q1KKGJ7G000649; Mon, 20 Feb 2012 15:16:19 -0500 (EST) (envelope-from jake@mischler.com) From: Dave Mischler To: Adrian Chadd Content-Type: text/plain; charset="us-ascii" Date: Mon, 20 Feb 2012 15:16:18 -0500 Message-ID: <1329768978.78961.23.camel@firkin.mischler.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: freebsd-wireless@freebsd.org Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: jake@mischler.com List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 20:16:20 -0000 > can you attach this to the PR too? OK. I tried to attach the previous message, too, but I assume the system was unhappy with the 180KB+ log file. > There's no errors here, it's just not RX'ing anything. > > Is there an rfkill switch/button? (ie, some button that > enables/disables wifi?) It may be a function switch? There is such a switch. I have tried playing with it under FreeBSD, and got nowhere. I don't seem to have to touch it under Ubuntu (or maybe I only had to use it once). > Have you loaded > the relevant ACPI module for your laptop (which sometimes maps the > rfkill line to ACPI somehow, I don't know the real details.) Other than having FreeBSD try to use ACPI, I don't know anything about this. This appears in the boot log, and might be relevant: Feb 20 16:11:25 halfpint kernel: acpi0: on motherboard Feb 20 16:11:25 halfpint kernel: ACPI Error: Could not enable PowerButton event (20120215/evxfevnt-217) Feb 20 16:11:25 halfpint kernel: ACPI Warning: Could not enable fixed event 0x2 (20120215/evxface-575) Feb 20 16:11:25 halfpint kernel: acpi0: Power Button (fixed) Feb 20 16:11:25 halfpint kernel: acpi0: reservation of 3f800000, 70800000 (3) failed Feb 20 16:11:25 halfpint kernel: cpu0: on acpi0 Feb 20 16:11:25 halfpint kernel: cpu1: on acpi0 How do I find out if there is an ACPI module available, and if so, how to load and enable it? When I got this netbook it had a dead hard disk (i.e. no software), and no useful documentation. I have downloaded the available user and quick start guides from Acer but I don't see much useful info. From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 20:20:10 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5DE35106564A for ; Mon, 20 Feb 2012 20:20:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CEEC8FC12 for ; Mon, 20 Feb 2012 20:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KKK9XB014657 for ; Mon, 20 Feb 2012 20:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KKK9vB014656; Mon, 20 Feb 2012 20:20:09 GMT (envelope-from gnats) Date: Mon, 20 Feb 2012 20:20:09 GMT Message-Id: <201202202020.q1KKK9vB014656@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: Dave Mischler Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave Mischler List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 20:20:10 -0000 The following reply was made to PR kern/165212; it has been noted by GNATS. From: Dave Mischler To: Adrian Chadd Cc: freebsd-wireless@freebsd.org Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Date: Mon, 20 Feb 2012 15:16:18 -0500 > can you attach this to the PR too? OK. I tried to attach the previous message, too, but I assume the system was unhappy with the 180KB+ log file. > There's no errors here, it's just not RX'ing anything. > > Is there an rfkill switch/button? (ie, some button that > enables/disables wifi?) It may be a function switch? There is such a switch. I have tried playing with it under FreeBSD, and got nowhere. I don't seem to have to touch it under Ubuntu (or maybe I only had to use it once). > Have you loaded > the relevant ACPI module for your laptop (which sometimes maps the > rfkill line to ACPI somehow, I don't know the real details.) Other than having FreeBSD try to use ACPI, I don't know anything about this. This appears in the boot log, and might be relevant: Feb 20 16:11:25 halfpint kernel: acpi0: on motherboard Feb 20 16:11:25 halfpint kernel: ACPI Error: Could not enable PowerButton event (20120215/evxfevnt-217) Feb 20 16:11:25 halfpint kernel: ACPI Warning: Could not enable fixed event 0x2 (20120215/evxface-575) Feb 20 16:11:25 halfpint kernel: acpi0: Power Button (fixed) Feb 20 16:11:25 halfpint kernel: acpi0: reservation of 3f800000, 70800000 (3) failed Feb 20 16:11:25 halfpint kernel: cpu0: on acpi0 Feb 20 16:11:25 halfpint kernel: cpu1: on acpi0 How do I find out if there is an ACPI module available, and if so, how to load and enable it? When I got this netbook it had a dead hard disk (i.e. no software), and no useful documentation. I have downloaded the available user and quick start guides from Acer but I don't see much useful info. From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 20:40:08 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E27A4106564A for ; Mon, 20 Feb 2012 20:40:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C28968FC0C for ; Mon, 20 Feb 2012 20:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1KKe89l034766 for ; Mon, 20 Feb 2012 20:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1KKe840034765; Mon, 20 Feb 2012 20:40:08 GMT (envelope-from gnats) Date: Mon, 20 Feb 2012 20:40:08 GMT Message-Id: <201202202040.q1KKe840034765@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: Dave Mischler Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dave Mischler List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 20:40:09 -0000 The following reply was made to PR kern/165212; it has been noted by GNATS. From: Dave Mischler To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Date: Mon, 20 Feb 2012 14:54:49 -0500 --=-BsnwwAWNQBMFSqp1aTVZ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit > Let's see if you're actually _getting_ interrupts. > > sysctl dev.ath.0.debug=0x1000 > sysctl hw.ath.hal.debug=0x80000 > > .. then let's see what is logged in dmesg. OK. I've attached a log that includes the whole boot process and almost a minute of bringing up the interface and letting it scan. I wouldn't normally dump this much log on you but I'm not sure exactly what you might need to see. --=-BsnwwAWNQBMFSqp1aTVZ Content-Disposition: attachment; filename="messages" Content-Type: text/plain; name="messages"; charset="us-ascii" Content-Transfer-Encoding: 7bit Feb 20 16:11:25 halfpint syslogd: kernel boot file is /boot/kernel/kernel Feb 20 16:11:25 halfpint kernel: Copyright (c) 1992-2012 The FreeBSD Project. Feb 20 16:11:25 halfpint kernel: Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 Feb 20 16:11:25 halfpint kernel: The Regents of the University of California. All rights reserved. Feb 20 16:11:25 halfpint kernel: FreeBSD is a registered trademark of The FreeBSD Foundation. Feb 20 16:11:25 halfpint kernel: FreeBSD 10.0-CURRENT #0: Mon Feb 20 15:42:47 UTC 2012 Feb 20 16:11:25 halfpint kernel: mischler@:/usr/obj/usr/src/sys/HALFPINT i386 Feb 20 16:11:25 halfpint kernel: WARNING: WITNESS option enabled, expect reduced performance. Feb 20 16:11:25 halfpint kernel: CPU: Intel(R) Atom(TM) CPU Z520 @ 1.33GHz (1240.93-MHz 686-class CPU) Feb 20 16:11:25 halfpint kernel: Origin = "GenuineIntel" Id = 0x106c2 Family = 6 Model = 1c Stepping = 2 Feb 20 16:11:25 halfpint kernel: Features=0xbfe9fbff Feb 20 16:11:25 halfpint kernel: Features2=0x40c3bd Feb 20 16:11:25 halfpint kernel: AMD Features=0x100000 Feb 20 16:11:25 halfpint kernel: AMD Features2=0x1 Feb 20 16:11:25 halfpint kernel: TSC: P-state invariant, performance statistics Feb 20 16:11:25 halfpint kernel: real memory = 2147483648 (2048 MB) Feb 20 16:11:25 halfpint kernel: avail memory = 2072403968 (1976 MB) Feb 20 16:11:25 halfpint kernel: Event timer "LAPIC" quality 400 Feb 20 16:11:25 halfpint kernel: ACPI APIC Table: Feb 20 16:11:25 halfpint kernel: FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs Feb 20 16:11:25 halfpint kernel: FreeBSD/SMP: 1 package(s) x 1 core(s) x 2 HTT threads Feb 20 16:11:25 halfpint kernel: cpu0 (BSP): APIC ID: 0 Feb 20 16:11:25 halfpint kernel: cpu1 (AP/HT): APIC ID: 1 Feb 20 16:11:25 halfpint kernel: ioapic0 irqs 0-23 on motherboard Feb 20 16:11:25 halfpint kernel: kbd1 at kbdmux0 Feb 20 16:11:25 halfpint kernel: acpi0: on motherboard Feb 20 16:11:25 halfpint kernel: ACPI Error: Could not enable PowerButton event (20120215/evxfevnt-217) Feb 20 16:11:25 halfpint kernel: ACPI Warning: Could not enable fixed event 0x2 (20120215/evxface-575) Feb 20 16:11:25 halfpint kernel: acpi0: Power Button (fixed) Feb 20 16:11:25 halfpint kernel: acpi0: reservation of 3f800000, 70800000 (3) failed Feb 20 16:11:25 halfpint kernel: cpu0: on acpi0 Feb 20 16:11:25 halfpint kernel: cpu1: on acpi0 Feb 20 16:11:25 halfpint kernel: hpet0: iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0 Feb 20 16:11:25 halfpint kernel: Timecounter "HPET" frequency 14318180 Hz quality 950 Feb 20 16:11:25 halfpint kernel: Event timer "HPET" frequency 14318180 Hz quality 450 Feb 20 16:11:25 halfpint kernel: Event timer "HPET1" frequency 14318180 Hz quality 440 Feb 20 16:11:25 halfpint kernel: Event timer "HPET2" frequency 14318180 Hz quality 440 Feb 20 16:11:25 halfpint kernel: atrtc0: port 0x70-0x73 on acpi0 Feb 20 16:11:25 halfpint kernel: atrtc0: Warning: Couldn't map I/O. Feb 20 16:11:25 halfpint kernel: Event timer "RTC" frequency 32768 Hz quality 0 Feb 20 16:11:25 halfpint kernel: attimer0: port 0x40-0x43 on acpi0 Feb 20 16:11:25 halfpint kernel: Timecounter "i8254" frequency 1193182 Hz quality 0 Feb 20 16:11:25 halfpint kernel: Event timer "i8254" frequency 1193182 Hz quality 100 Feb 20 16:11:25 halfpint kernel: Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 Feb 20 16:11:25 halfpint kernel: acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_ec0: port 0x62,0x66 on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_acad0: on acpi0 Feb 20 16:11:25 halfpint kernel: battery0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_lid0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_button0: on acpi0 Feb 20 16:11:25 halfpint kernel: acpi_button1: on acpi0 Feb 20 16:11:25 halfpint kernel: pcib0: port 0xcf8-0xcff on acpi0 Feb 20 16:11:25 halfpint kernel: pci0: on pcib0 Feb 20 16:11:25 halfpint kernel: vgapci0: port 0x1800-0x1807 mem 0xb0080000-0xb00fffff,0xc0000000-0xcfffffff,0xb0000000-0xb003ffff irq 16 at device 2.0 on pci0 Feb 20 16:11:25 halfpint kernel: hdac0: mem 0xb0050000-0xb0053fff irq 22 at device 27.0 on pci0 Feb 20 16:11:25 halfpint kernel: pcib1: irq 17 at device 28.0 on pci0 Feb 20 16:11:25 halfpint kernel: pci2: on pcib1 Feb 20 16:11:25 halfpint kernel: re0: port 0x2000-0x20ff mem 0xd0110000-0xd0110fff,0xd0100000-0xd010ffff irq 16 at device 0.0 on pci2 Feb 20 16:11:25 halfpint kernel: re0: Using 1 MSI-X message Feb 20 16:11:25 halfpint kernel: re0: Chip rev. 0x24800000 Feb 20 16:11:25 halfpint kernel: re0: MAC rev. 0x00400000 Feb 20 16:11:25 halfpint kernel: miibus0: on re0 Feb 20 16:11:25 halfpint kernel: rlphy0: PHY 1 on miibus0 Feb 20 16:11:25 halfpint kernel: rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto, auto-flow Feb 20 16:11:25 halfpint kernel: re0: Ethernet address: 00:23:8b:b1:1b:92 Feb 20 16:11:25 halfpint kernel: pcib2: irq 16 at device 28.1 on pci0 Feb 20 16:11:25 halfpint kernel: pci3: on pcib2 Feb 20 16:11:25 halfpint kernel: ath0: mem 0xd0000000-0xd000ffff irq 17 at device 0.0 on pci3 Feb 20 16:11:25 halfpint kernel: ath0: AR2425 mac 14.2 RF5424 phy 7.0 Feb 20 16:11:25 halfpint kernel: ath0: 2GHz radio: 0x0000; 5GHz radio: 0x00a2 Feb 20 16:11:25 halfpint kernel: uhci0: port 0x1820-0x183f irq 23 at device 29.0 on pci0 Feb 20 16:11:25 halfpint kernel: uhci0: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus0: on uhci0 Feb 20 16:11:25 halfpint kernel: uhci1: port 0x1840-0x185f irq 19 at device 29.1 on pci0 Feb 20 16:11:25 halfpint kernel: uhci1: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus1: on uhci1 Feb 20 16:11:25 halfpint kernel: uhci2: port 0x1860-0x187f irq 18 at device 29.2 on pci0 Feb 20 16:11:25 halfpint kernel: uhci2: LegSup = 0x0000 Feb 20 16:11:25 halfpint kernel: usbus2: on uhci2 Feb 20 16:11:25 halfpint kernel: ehci0: mem 0xb0054000-0xb00543ff irq 21 at device 29.7 on pci0 Feb 20 16:11:25 halfpint kernel: usbus3: EHCI version 1.0 Feb 20 16:11:25 halfpint kernel: usbus3: on ehci0 Feb 20 16:11:25 halfpint kernel: isab0: at device 31.0 on pci0 Feb 20 16:11:25 halfpint kernel: isa0: on isab0 Feb 20 16:11:25 halfpint kernel: atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0x1810-0x181f at device 31.1 on pci0 Feb 20 16:11:25 halfpint kernel: ata0: at channel 0 on atapci0 Feb 20 16:11:25 halfpint kernel: acpi_tz0: on acpi0 Feb 20 16:11:25 halfpint kernel: atkbdc0: port 0x60,0x64 irq 1 on acpi0 Feb 20 16:11:25 halfpint kernel: atkbd0: irq 1 on atkbdc0 Feb 20 16:11:25 halfpint kernel: kbd0 at atkbd0 Feb 20 16:11:25 halfpint kernel: atkbd0: [GIANT-LOCKED] Feb 20 16:11:25 halfpint kernel: psm0: irq 12 on atkbdc0 Feb 20 16:11:25 halfpint kernel: psm0: [GIANT-LOCKED] Feb 20 16:11:25 halfpint kernel: psm0: model Generic PS/2 mouse, device ID 0 Feb 20 16:11:25 halfpint kernel: pmtimer0 on isa0 Feb 20 16:11:25 halfpint kernel: orm0: at iomem 0xce800-0xcf7ff,0xe0000-0xe17ff pnpid ORM0000 on isa0 Feb 20 16:11:25 halfpint kernel: sc0: at flags 0x100 on isa0 Feb 20 16:11:25 halfpint kernel: sc0: VGA <16 virtual consoles, flags=0x300> Feb 20 16:11:25 halfpint kernel: vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Feb 20 16:11:25 halfpint kernel: fdc0: No FDOUT register! Feb 20 16:11:25 halfpint kernel: ppc0: parallel port not found. Feb 20 16:11:25 halfpint kernel: ctl: CAM Target Layer loaded Feb 20 16:11:25 halfpint kernel: est0: on cpu0 Feb 20 16:11:25 halfpint kernel: p4tcc0: on cpu0 Feb 20 16:11:25 halfpint kernel: est1: on cpu1 Feb 20 16:11:25 halfpint kernel: p4tcc1: on cpu1 Feb 20 16:11:25 halfpint kernel: Timecounters tick every 1.000 msec Feb 20 16:11:25 halfpint kernel: hdacc0: at cad 0 on hdac0 Feb 20 16:11:25 halfpint kernel: hdaa0: at nid 1 on hdacc0 Feb 20 16:11:25 halfpint kernel: pcm0: at nid 20,33 and 24 on hdaa0 Feb 20 16:11:25 halfpint kernel: pcm1: at nid 18 on hdaa0 Feb 20 16:11:25 halfpint kernel: usbus0: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus1: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus2: 12Mbps Full Speed USB v1.0 Feb 20 16:11:25 halfpint kernel: usbus3: 480Mbps High Speed USB v2.0 Feb 20 16:11:25 halfpint kernel: ugen0.1: at usbus0 Feb 20 16:11:25 halfpint kernel: uhub0: on usbus0 Feb 20 16:11:25 halfpint kernel: ugen1.1: at usbus1 Feb 20 16:11:25 halfpint kernel: uhub1: on usbus1 Feb 20 16:11:25 halfpint kernel: ugen2.1: at usbus2 Feb 20 16:11:25 halfpint kernel: uhub2: on usbus2 Feb 20 16:11:25 halfpint kernel: ugen3.1: at usbus3 Feb 20 16:11:25 halfpint kernel: uhub3: on usbus3 Feb 20 16:11:25 halfpint kernel: uhub0: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub1: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub2: 2 ports with 2 removable, self powered Feb 20 16:11:25 halfpint kernel: uhub3: 8 ports with 8 removable, self powered Feb 20 16:11:25 halfpint kernel: ada0 at ata0 bus 0 scbus0 target 0 lun 0 Feb 20 16:11:25 halfpint kernel: ada0: ATA-8 SATA 2.x device Feb 20 16:11:25 halfpint kernel: ada0: 100.000MB/s transfers (UDMA5, PIO 8192bytes) Feb 20 16:11:25 halfpint kernel: ada0: 238475MB (488397168 512 byte sectors: 16H 63S/T 16383C) Feb 20 16:11:25 halfpint kernel: ada0: Previously was known as ad0 Feb 20 16:11:25 halfpint kernel: SMP: AP CPU #1 Launched! Feb 20 16:11:25 halfpint kernel: WARNING: WITNESS option enabled, expect reduced performance. Feb 20 16:11:25 halfpint kernel: Root mount waiting for: usbus3 Feb 20 16:11:25 halfpint kernel: ugen3.2: at usbus3 Feb 20 16:11:25 halfpint kernel: Trying to mount root from ufs:/dev/ada0p2 [rw]... Feb 20 16:11:27 halfpint kernel: . Feb 20 16:12:03 halfpint login: ROOT LOGIN (root) ON ttyv1 Feb 20 16:12:49 halfpint kernel: wlan0: Ethernet address: 00:24:2c:5d:ed:55 Feb 20 16:13:03 halfpint kernel: ath0: ath_init: if_flags 0x8803 Feb 20 16:13:03 halfpint kernel: ath0: ath_stop_locked: invalid 0 if_flags 0x8803 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:03 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:03 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:03 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:03 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:03 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:03 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:03 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:04 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:04 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:04 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:04 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:04 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:04 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:05 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:05 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:05 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:05 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:05 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:05 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:06 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:06 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:06 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:06 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:06 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:06 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:07 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:07 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:07 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:07 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:08 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:08 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:08 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:08 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:08 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:08 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:09 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:09 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:09 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:09 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:09 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:09 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:10 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:10 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:10 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:10 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:11 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:11 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:11 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:11 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:11 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:11 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:12 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:12 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:12 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:12 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:12 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:12 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:13 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:13 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:13 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:13 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:14 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:14 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:14 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:14 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:14 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:14 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:15 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:15 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:15 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:15 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:15 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:15 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:16 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:16 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:16 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:16 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:17 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:17 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:17 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:17 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:17 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:17 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:18 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:18 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:18 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:18 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:18 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:18 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:19 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:19 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:19 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:19 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:19 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:19 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:20 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:20 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:20 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:20 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:21 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:21 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:21 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:21 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:21 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:21 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:22 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:22 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:22 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:22 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:22 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:22 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:23 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:23 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:23 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:23 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:24 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:24 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:24 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:24 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:24 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:24 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:25 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:25 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:25 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:25 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:25 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:25 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:26 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:26 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:26 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:26 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:26 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:26 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:27 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:27 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:27 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:27 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:28 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:28 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:28 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:28 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:28 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:28 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:29 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:29 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:29 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:29 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:29 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:29 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: TSF moved while trying to set quiet time TSF: 0x08b4a7fe Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:30 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:30 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:30 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:30 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:31 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:31 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:31 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:31 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:31 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:31 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:32 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:32 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:32 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:32 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:32 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:32 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:33 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:33 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:33 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:33 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:33 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:33 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:34 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:34 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:34 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:34 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:35 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:35 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:35 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:35 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:35 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:35 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:36 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:36 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:36 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:36 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:36 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:36 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:37 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:37 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:37 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:37 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:38 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:38 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:38 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:38 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:38 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:38 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:39 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:39 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:39 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:39 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:39 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:39 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:40 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:40 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:40 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:40 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:41 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:41 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:41 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:41 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:41 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:41 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:42 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:42 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:42 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:42 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:42 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:42 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:43 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:43 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:43 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:43 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:44 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:44 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:44 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:44 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:44 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:44 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:45 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:45 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:45 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:45 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:45 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:45 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:46 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:46 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:46 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:46 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:47 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:47 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:47 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:47 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:47 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:47 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:48 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:48 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:48 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:48 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:48 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:48 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:49 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:49 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:49 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:49 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:50 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:50 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:50 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:50 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:50 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:50 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:51 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:51 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:51 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:51 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:51 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:51 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x0 Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:52 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:52 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:52 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:52 halfpint kernel: AR_DIAG_SW=0x00000020 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x80965 => 0x1080965 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x1000ca7 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x1080965 => 0xc0001071 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: enable IER Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0xc0001071 => 0x40001071 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: disable IER Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x814b7 Feb 20 16:13:53 halfpint kernel: ath0: ath_stop_locked: invalid 0 if_flags 0x8802 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: 0x40001071 => 0x0 Feb 20 16:13:53 halfpint kernel: ar5212SetInterrupts: new IMR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: queue 1 DMA did not stop in 100 msec Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: QSTS 0x0 Q_TXE 0x2 Q_TXD 0x2 Q_CBR 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Q_MISC 0x800 Q_RDYTIMECFG 0x0 Q_RDYTIMESHDN 0x0 Feb 20 16:13:53 halfpint kernel: ar5212StopTxDma: Failed to stop Tx DMA in 0 msec after killing last frame Feb 20 16:13:53 halfpint kernel: ar5212StopDmaReceive: dma failed to stop in 10ms Feb 20 16:13:53 halfpint kernel: AR_CR=0x00000024 Feb 20 16:13:53 halfpint kernel: AR_DIAG_SW=0x00000020 --=-BsnwwAWNQBMFSqp1aTVZ-- From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 21:17:52 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C1193106566B for ; Mon, 20 Feb 2012 21:17:52 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 8846D8FC14 for ; Mon, 20 Feb 2012 21:17:52 +0000 (UTC) Received: by daec6 with SMTP id c6so6878324dae.13 for ; Mon, 20 Feb 2012 13:17:52 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.68.73.138 as permitted sender) client-ip=10.68.73.138; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.68.73.138 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.68.73.138]) by 10.68.73.138 with SMTP id l10mr66903037pbv.22.1329772672170 (num_hops = 1); Mon, 20 Feb 2012 13:17:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:to:reply-to:subject:in-reply-to:x-mailer :mime-version:content-type; bh=ICYfP30564C4MT23vGi29d25wegco6/HjzUin8YglYs=; b=HdzBYZI+9sZ8N7M+dd6NuPDTAuaslFz4mNS7JCyNdK16wqxqWrro5QvkLF88Z9zQc/ ChrXGKdW01zbN5ZGiB6/MfXB4iMndsPph/JkGCJueSFYzK4i2yq83gOC8Y7mauHv2gFJ Q3O6gssu1chNl/ftp/TY6dHd/fjSPgy4drmic= Received: by 10.68.73.138 with SMTP id l10mr55166497pbv.22.1329772672112; Mon, 20 Feb 2012 13:17:52 -0800 (PST) Received: from www.palm.com ([32.156.138.180]) by mx.google.com with ESMTPS id t10sm25646349pbb.18.2012.02.20.13.17.45 (version=SSLv3 cipher=OTHER); Mon, 20 Feb 2012 13:17:50 -0800 (PST) Message-ID: <4f42b87e.ea0b440a.592f.fffff7cd@mx.google.com> Date: Mon, 20 Feb 2012 13:17:39 -0800 From: "Adrian Chadd" To: "Dave Mischler" , "freebsd-wireless@freebsd.org" In-Reply-To: <201202202020.q1KKK9vB014656@freefall.freebsd.org> X-Mailer: Palm webOS v1.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adrian Chadd List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 21:17:52 -0000 I bet it's that. Rfkill and acpi can be a pain. Ath5k and ath9k have= had issues with it in the past. I'll see if my acer sspire one (running windows) has the same issue when bo= oting freebsd.. Adrian Sent from my Palm Pre on AT&T On Feb 20, 2012 12:20 PM, Dave Mischler <jake@mischler.com> wrote:=20 The following reply was made to PR kern/165212; it has been noted by GNATS. From: Dave Mischler <jake@mischler.com> To: Adrian Chadd <adrian@freebsd.org> Cc: freebsd-wireless@freebsd.org Subject: Re: kern/165212: [ath] No WiFi on Acer Aspire One 751h (Atheros AR5BHB63 & AR5B95) Date: Mon, 20 Feb 2012 15:16:18 -0500 > can you attach this to the PR too? =20 OK. I tried to attach the previous message, too, but I assume the system was unhappy with the 180KB+ log file. =20 > There's no errors here, it's just not RX'ing anything. >=20 > Is there an rfkill switch/button? (ie, some button that > enables/disables wifi?) It may be a function switch? =20 There is such a switch. I have tried playing with it under FreeBSD, and got nowhere. I don't seem to have to touch it under Ubuntu (or maybe I only had to use it once). =20 > Have you loaded > the relevant ACPI module for your laptop (which sometimes maps the > rfkill line to ACPI somehow, I don't know the real details.) =20 Other than having FreeBSD try to use ACPI, I don't know anything about thi= s. This appears in the boot log, and might be relevant: =20 Feb 20 16:11:25 halfpint kernel: acpi0: <ACRSYS ACRPRDCT> on motherb= oard Feb 20 16:11:25 halfpint kernel: ACPI Error: Could not enable PowerButton= event (20120215/evxfevnt-217) Feb 20 16:11:25 halfpint kernel: ACPI Warning: Could not enable fixed even= t 0x2 (20120215/evxface-575) Feb 20 16:11:25 halfpint kernel: acpi0: Power Button (fixed) Feb 20 16:11:25 halfpint kernel: acpi0: reservation of 3f800000, 70800000= (3) failed Feb 20 16:11:25 halfpint kernel: cpu0: <ACPI CPU> on acpi0 Feb 20 16:11:25 halfpint kernel: cpu1: <ACPI CPU> on acpi0 =20 How do I find out if there is an ACPI module available, and if so, how to= load and enable it? When I got this netbook it had a dead hard disk (i.e. no= software), and no useful documentation. I have downloaded the available user and qui= ck start guides from Acer but I don't see much useful info. =20 =20 _______________________________________________ freebsd-wireless@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-wireless To unsubscribe, send any mail to "freebsd-wireless-unsubscribe@freebsd.org" From owner-freebsd-wireless@FreeBSD.ORG Mon Feb 20 21:54:30 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E5E01065670 for ; Mon, 20 Feb 2012 21:54:30 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id AF63B8FC15 for ; Mon, 20 Feb 2012 21:54:29 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so5001979wib.13 for ; Mon, 20 Feb 2012 13:54:28 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.93.4 as permitted sender) client-ip=10.180.93.4; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.93.4 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.93.4]) by 10.180.93.4 with SMTP id cq4mr20360162wib.21.1329774868797 (num_hops = 1); Mon, 20 Feb 2012 13:54:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=MSAFmFx/Bp6vQDNKuslTwG0XD6nv+v0aecngkskLzag=; b=osgafNMpiX+gWpuVJEU7GTrpOjKkwhqDUt0UAIENVR/HidD1nmkBR3GHehi5J822fw 1EvNwm+1OSzxjY7ZyXuVV54HR5LGJgyzG3Br1tQcXBoU0d9VWbb9GXtikrAmCISyEmmo xBlmHSHmnJh6zg2KGAeio55w7jMHYnXg6gHaE= MIME-Version: 1.0 Received: by 10.180.93.4 with SMTP id cq4mr16882248wib.21.1329774868761; Mon, 20 Feb 2012 13:54:28 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Mon, 20 Feb 2012 13:54:28 -0800 (PST) In-Reply-To: <4F370F21.3030300@gmail.com> References: <4F36DAB0.2020803@gmail.com> <4f36df71.2139440a.10ce.fffffb81@mx.google.com> <4F370F21.3030300@gmail.com> Date: Mon, 20 Feb 2012 13:54:28 -0800 X-Google-Sender-Auth: lGBv8CEMK0DeJmkjNCLE5Po86Eg Message-ID: From: Adrian Chadd To: "Sevan / Venture37" Content-Type: text/plain; charset=ISO-8859-1 Cc: "freebsd-wireless@freebsd.org" Subject: Re: wi driver X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 21:54:30 -0000 Do you have the core dump still? in a way you can use kgdb on it? I'd like to see what the state of the variables inside wi_intr() are. Adrian From owner-freebsd-wireless@FreeBSD.ORG Tue Feb 21 11:01:29 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2EA391065679 for ; Tue, 21 Feb 2012 11:01:29 +0000 (UTC) (envelope-from erichfreebsdlist@ovitrap.com) Received: from alogreentechnologies.com (alogreentechnologies.com [67.212.226.44]) by mx1.freebsd.org (Postfix) with ESMTP id 889618FC13 for ; Tue, 21 Feb 2012 11:01:09 +0000 (UTC) Received: from amd620.ovitrap.com ([49.128.188.2]) (authenticated bits=0) by alogreentechnologies.com (8.13.1/8.13.1) with ESMTP id q1LATBvH017200; Tue, 21 Feb 2012 03:29:14 -0700 From: Erich Dollansky To: "Dr. James R. Pannozzi D.O.M. LAc." Date: Tue, 21 Feb 2012 17:29:08 +0700 User-Agent: KMail/1.13.7 (FreeBSD/8.2-STABLE; KDE/4.7.4; amd64; ; ) References: <201202211600.29579.erich@alogreentechnologies.com> In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201202211729.08664.erichfreebsdlist@ovitrap.com> Cc: freebsd-wireless@freebsd.org Subject: Re: Re MAN Page on Wireless Cards X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2012 11:01:29 -0000 Hi, first of all, I put the proper list into the CC. This increases you chances of fast help. On Tuesday 21 February 2012 17:09:59 Dr. James R. Pannozzi D.O.M. LAc. wrote: > Well thanks! > If anyone can make sense out of this here it is... > > Oh, I'm sending this from the same pc-bsd computer with the wireless > problem, I just plugged in a long lan cable from the other room and > got my lan cable connection immediately after typing > ifconfig re0 up > but I have to get the wireless working. > > Here is the output of the command: > wpa_supplicant -dd -i wlan0 -i /etc/wpa_supplicant.conf I am a bit confused here. Let us go back to the basics You should have something like this in your /etc/rc.conf # #------------------------------------------------------------------------------ # # Wireless Network Configuration: # # Configuration for LooLa, Bintan. # wlans_run0="wlan0" ifconfig_wlan0="inet 192.168.1.28 netmask 255.255.255.0 ssid WhaterYoursIs WPA" defaultrouter="192.168.1.1" # Of course, you also could use DCHP. You must also know if run is the proper driver for your card. Here is the point where dmesg comes in handy. My wpa_supplicant.conf looks like this: network={ ssid="WhaterYoursIs" scan_ssid=1 key_mgmt=WPA-PSK psk="a very secret password" } This is really all I needed. This is from 8.2. I do not think that much has changed with 9.0 but others might will know. > > and after that I'll list the wpa_supplicant and relevant rc.conf files... > > Please note my wife's Windows 7 computer wirelessly connects with no > problem so it's not a router problem (Verizon Hi Speed Intneret > wireless modem/router D-Link) > > OK, here is output of the wpa_supplicant command > > wpa_supplicant -dd -i wlan0 -c /etc/wpa_supplicant.conf When you are at this point, you should know which driver does the actual work. > Cancelling scan request > Cancelling authentication timeout > wpa_driver_bsd_set_wpa_internal: wpa=2 privacy=0 > This looks like that you have your driver. Can you check which one it is? > Here is the wpa_supplicant.conf: > > ctrl_interface=/var/run/wpa_supplicant > > network={ > ssid="b8a386e4dc03" > priority=145 > scan_ssid=1 > psk="JD8YFPE6WBFTVSLD" > } > Sounds reasonable. You checked the values? > > > And here is the last several lines from /etc/rc.conf: > # Run the pcbsd init service > pcbsdinit_enable="YES" > > # Enable anacron > anacron_enable="YES" > > # Enable fusefs > fusefs_enable="YES" > ntpd_enable="YES" > ntpd_sync_on_start="YES" > keymap="us.iso" > # Auto-Enabled NICs from pc-sysinstall > wlans_ral0="wlan0" This would mean that you have ral as the driver. > ifconfig_wlan0="WPA SYNCDHCP" Let us compare: ifconfig_wlan0="inet 192.168.1.28 netmask 255.255.255.0 ssid WhaterYoursIs WPA" I think you missed the entry ssid WhaterYoursIs Are you sure that SYNCDHCP is right? > ifconfig_re0="DHCP" > # Auto-Enabled NICs from pc-sysinstall > ifconfig_re0_ipv6="inet6 accept_rtadv" > hostname="pcbsd-8753" > mysql_enable="YES" > mythbackend_enable="YES" > vmware_guest_vmblock_enable="YES" > vmware_guest_vmhgfs_enable="YES" > vmware_guest_vmmemctl_enable="YES" > vmware_guest_vmxnet_enable="YES" > vmware_guestd_enable="YES" > vboxguest_enable="YES" > vboxservice_enable="YES" > Do you run this in a virtual machine? > > If I read the output of that wpa_supplicant command properly, it seems > to see a wpa_ie_len of 0 from my router (the length of the wpa > password??) but sees a nearby router in the building with an ssid of > "linksys" which has a password of 22 bytes !. > Some things confuse me a bit. This is why I went back to the basics first. > Anyway if you spot anything, please let me know. I know the card is > working and scanning OK, how hard can it be to just activate it to > start talking to the router and give me internet access ??? We've got > to come up with better instructions on doing this. I'm typing > commands by copying stuff in google but it would take me days or weeks > to study them and figure out what they exactly mean! At least for the run driver, it was really as easy as I said. I also failed with a ral device. But the ral device did not work much better under Windows. So, I did not bother any further. Erich From owner-freebsd-wireless@FreeBSD.ORG Tue Feb 21 15:00:43 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3D25A106564A for ; Tue, 21 Feb 2012 15:00:43 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id EC72A8FC0C for ; Tue, 21 Feb 2012 15:00:42 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id q1LEnmM5066418; Tue, 21 Feb 2012 07:49:48 -0700 (MST) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id q1LEnlZ0066415; Tue, 21 Feb 2012 07:49:48 -0700 (MST) (envelope-from wblock@wonkity.com) Date: Tue, 21 Feb 2012 07:49:47 -0700 (MST) From: Warren Block To: Erich Dollansky In-Reply-To: <201202211729.08664.erichfreebsdlist@ovitrap.com> Message-ID: References: <201202211600.29579.erich@alogreentechnologies.com> <201202211729.08664.erichfreebsdlist@ovitrap.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Tue, 21 Feb 2012 07:49:48 -0700 (MST) Cc: "Dr. James R. Pannozzi D.O.M. LAc." , freebsd-wireless@freebsd.org Subject: Re: Re MAN Page on Wireless Cards X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2012 15:00:43 -0000 On Tue, 21 Feb 2012, Erich Dollansky wrote: > My wpa_supplicant.conf looks like this: > > network={ > ssid="WhaterYoursIs" > scan_ssid=1 > key_mgmt=WPA-PSK > psk="a very secret password" > } > > This is really all I needed. Even this is more than absolutely required. scan_ssid=1 is only needed if "hidden" SSIDs are used. key_mgmt can usually be left at default. > This would mean that you have ral as the driver. > >> ifconfig_wlan0="WPA SYNCDHCP" > > Let us compare: > > ifconfig_wlan0="inet 192.168.1.28 netmask 255.255.255.0 ssid WhaterYoursIs WPA" > > I think you missed the entry ssid WhaterYoursIs > > Are you sure that SYNCDHCP is right? It is. SYNCDHCP is the equivalent of setting synchronous_dhclient="YES" and using plain DHCP, which is to wait until dhclient has returned before continuing startup. Helpful with wireless because some cards and access points take a long time to get a DHCP lease. From owner-freebsd-wireless@FreeBSD.ORG Wed Feb 22 00:56:09 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F92D106566B for ; Wed, 22 Feb 2012 00:56:09 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-ww0-f50.google.com (mail-ww0-f50.google.com [74.125.82.50]) by mx1.freebsd.org (Postfix) with ESMTP id 07A0A8FC16 for ; Wed, 22 Feb 2012 00:56:08 +0000 (UTC) Received: by wgbdq11 with SMTP id dq11so6042923wgb.31 for ; Tue, 21 Feb 2012 16:56:07 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.78.6 as permitted sender) client-ip=10.180.78.6; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.78.6 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.78.6]) by 10.180.78.6 with SMTP id x6mr31106203wiw.18.1329872167918 (num_hops = 1); Tue, 21 Feb 2012 16:56:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=lErSiS7rKxa4ssH+EnAAZZJyPzW1xoETLX26lDihemc=; b=pLDojXkevODds//3J97hq7fkkKFLw3FtLGXP9hCZdXiPbZwfUPc2yK158IrC3yszk6 Tt37UTw3QWak0pkznF672N7Xt3384khmZeFXpXtVfrA28o8spJJXDeU87rQG1qXSZJsm HK7MuCpF1JMFF2usBbPspivSKvLkUPCtoBLoM= MIME-Version: 1.0 Received: by 10.180.78.6 with SMTP id x6mr25902699wiw.18.1329872167882; Tue, 21 Feb 2012 16:56:07 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Tue, 21 Feb 2012 16:56:07 -0800 (PST) In-Reply-To: References: Date: Tue, 21 Feb 2012 16:56:07 -0800 X-Google-Sender-Auth: 4lEOROhbfVFeK6Zoiq06OYl-XZ4 Message-ID: From: Adrian Chadd To: freebsd-wireless@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: ath fixes in -HEAD: squish (most) of the ath_rx_tasklet warnings X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Feb 2012 00:56:09 -0000 .. as a note, I'm still getting some RX tasklet messages. I'm trying to chase down exactly what I'm missing. Adrian On 16 February 2012 23:26, Adrian Chadd wrote: > Hi, > > I've just rejiggled the reset/channel change path to (mostly) properly > drain and pause the ath taskqueue when doing a reset/channel change. > > This has quietened most of the overlapping RX completions during reset > - they seemed to have been occuring because an RX interrupt was coming > in or had just come in before a reset. > > Please test the latest -HEAD and let me know if there are any issues. > > Thanks! > > > Adrian From owner-freebsd-wireless@FreeBSD.ORG Wed Feb 22 22:38:19 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C940106567F for ; Wed, 22 Feb 2012 22:38:19 +0000 (UTC) (envelope-from mnd999@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id D63388FC20 for ; Wed, 22 Feb 2012 22:38:18 +0000 (UTC) Received: by wibhn14 with SMTP id hn14so565228wib.13 for ; Wed, 22 Feb 2012 14:38:17 -0800 (PST) Received-SPF: pass (google.com: domain of mnd999@gmail.com designates 10.180.99.7 as permitted sender) client-ip=10.180.99.7; Authentication-Results: mr.google.com; spf=pass (google.com: domain of mnd999@gmail.com designates 10.180.99.7 as permitted sender) smtp.mail=mnd999@gmail.com; dkim=pass header.i=mnd999@gmail.com Received: from mr.google.com ([10.180.99.7]) by 10.180.99.7 with SMTP id em7mr476704wib.7.1329950297697 (num_hops = 1); Wed, 22 Feb 2012 14:38:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:content-type:subject:date:references:to:message-id :mime-version:x-mailer; bh=TzvanWseFBYgTPzQa+nP1HoGKt8uFZcf7bZ+LXUR02Q=; b=Ynq4mQ1TgdGyuwvTcHh/0w9nHP2UqxS1rXuNtKywjhF+wYF4KfeW7yTo2D1AVG8XgN IS9aFtsxgs0lhhUyEPrzPPidPxKpTtUnmqu54R2xVR1G7m9gHfPzDcmlKhXO9gqJT8IK 8T8xBRug/8NDWUYMd1BO6HwPtBzoUvS01Rqwg= Received: by 10.180.99.7 with SMTP id em7mr282266wib.7.1329948846401; Wed, 22 Feb 2012 14:14:06 -0800 (PST) Received: from [192.168.0.222] (027d82e6.bb.sky.com. [2.125.130.230]) by mx.google.com with ESMTPS id m8sm1108934wia.11.2012.02.22.14.14.04 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 22 Feb 2012 14:14:05 -0800 (PST) From: Mark Dixon Content-Type: multipart/signed; boundary="Apple-Mail=_E68E90BC-6FAA-4433-8DC3-B485DC31E44B"; protocol="application/pgp-signature"; micalg=pgp-sha1 Date: Wed, 22 Feb 2012 22:13:55 +0000 References: <5CF2D9AB-DCE6-484B-BAB1-06E7E540F807@gmail.com> To: freebsd-wireless@freebsd.org Message-Id: <858DD3DB-1E0A-4CBE-8B49-2545FCB5FEE5@gmail.com> Mime-Version: 1.0 (Apple Message framework v1257) X-Mailer: Apple Mail (2.1257) Subject: Bridge wired / wireless without hosting the network - is this possible X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Feb 2012 22:38:19 -0000 --Apple-Mail=_E68E90BC-6FAA-4433-8DC3-B485DC31E44B Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Hi all, Apologies if this has come up before but I can't see anything with a = quick google. I also tried freebsd-questions but nobody seemed to know = there. What I want to do is setup a bridge between my wireless network and a = wired one. Hostap I hear everyone cry but I don't think that will work = because I don't want to create a wireless network - I want to join an = existing one because this box won't be turned on all the time. I also = need the bridging desktop to have a DHCP acquired IP because it want to = have internet access (I mainly use it for Scala dev). Essentially, the network looks like this: [Internet Router w/ DHCP] -----wired--[Switch] ---wired---[Airport = Express]******wireless******[Desktop = w/Freebsd9]-------wired-----[ReadyNAS] What I want to do is have the freebsd (dual boot wi/ Windows) desktop = bridge to the readyNAS when it's turned on via the wireless LAN so that = I can access files on it. Unfortunately I can't connect the readyNAS to = the switch because the switch is in the living room and the readyNAS is = too noisy. When the desktop is running Windows 7 this is dead easy, but = I can't figure out how to do it under FreeBSD. Any ideas? Thanks, Mark= --Apple-Mail=_E68E90BC-6FAA-4433-8DC3-B485DC31E44B Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.17 (Darwin) iEYEARECAAYFAk9FaKwACgkQLqgJ90OcaiA05ACgrPyjhJFvfWFBt3+TRmf82njP hO4AoNDr+ScYFDtZknytP9xZ2dTWbXYd =XjMv -----END PGP SIGNATURE----- --Apple-Mail=_E68E90BC-6FAA-4433-8DC3-B485DC31E44B-- From owner-freebsd-wireless@FreeBSD.ORG Thu Feb 23 00:07:23 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9D8751065676 for ; Thu, 23 Feb 2012 00:07:23 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 692628FC20 for ; Thu, 23 Feb 2012 00:07:23 +0000 (UTC) Received: by daec6 with SMTP id c6so660302dae.13 for ; Wed, 22 Feb 2012 16:07:23 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.68.225.231 as permitted sender) client-ip=10.68.225.231; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.68.225.231 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.68.225.231]) by 10.68.225.231 with SMTP id rn7mr75578911pbc.64.1329955643042 (num_hops = 1); Wed, 22 Feb 2012 16:07:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:to:reply-to:subject:in-reply-to:x-mailer :mime-version:content-type; bh=wf9jCrW/NnvildfjEL3wQI5VR4IUdGyQ22Y5JvXbRpo=; b=bkUvQpCfrFwpTMnVGfOqTls90RbRcP5KZesBL9rGDTm+OX+nnaAg0bFpa2GQOeHt6u D4H+q2Ga9LyZajfBWOJUhwHFvX1ioeuLRD4Co21h0E2hc+fL1N8ye144a/kjfFwKoIxV GY5t0Du5AVc4BurWRF6hqwaf+eMI+fuRYjtw4= Received: by 10.68.225.231 with SMTP id rn7mr62239908pbc.64.1329955642922; Wed, 22 Feb 2012 16:07:22 -0800 (PST) Received: from www.palm.com ([32.154.109.200]) by mx.google.com with ESMTPS id y9sm31819418pbi.3.2012.02.22.16.07.16 (version=SSLv3 cipher=OTHER); Wed, 22 Feb 2012 16:07:21 -0800 (PST) Message-ID: <4f458339.6922440a.3e3e.ffffb992@mx.google.com> Date: Wed, 22 Feb 2012 16:07:10 -0800 From: "Adrian Chadd" To: "Mark Dixon" , "freebsd-wireless@freebsd.org" In-Reply-To: <858DD3DB-1E0A-4CBE-8B49-2545FCB5FEE5@gmail.com> X-Mailer: Palm webOS v1.0.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Bridge wired / wireless without hosting the network - is this possible X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adrian Chadd List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Feb 2012 00:07:23 -0000 The problem is the source mac address. When bridging, the source mac is the bridge if, not the ether/wifi mac. Either you need to tell if-bridge to use the ethernet mac address and hooe= that works, or we need to do something nasty with mac address translation.= WDS would let you tunnel the bridge mac over wifi, but that's a whole othe= r issue.. Adrian Sent from my Palm Pre on AT&T On Feb 22, 2012 2:38 PM, Mark Dixon <mnd999@gmail.com> wrote:=20 Hi all, Apologies if this has come up before but I can't see anything with a quick= google. I also tried freebsd-questions but nobody seemed to know there. What I want to do is setup a bridge between my wireless network and a wired= one. Hostap I hear everyone cry but I don't think that will work because= I don't want to create a wireless network - I want to join an existing on= e because this box won't be turned on all the time. I also need the bridgin= g desktop to have a DHCP acquired IP because it want to have internet acces= s (I mainly use it for Scala dev). Essentially, the network looks like this: [Internet Router w/ DHCP] -----wired--[Switch] ---wired---[Airport Express]= ******wireless******[Desktop w/Freebsd9]-------wired-----[ReadyNAS] What I want to do is have the freebsd (dual boot wi/ Windows) desktop bridg= e to the readyNAS when it's turned on via the wireless LAN so that I can ac= cess files on it. Unfortunately I can't connect the readyNAS to the switch= because the switch is in the living room and the readyNAS is too noisy. Wh= en the desktop is running Windows 7 this is dead easy, but I can't figure= out how to do it under FreeBSD. Any ideas? Thanks, Mark From owner-freebsd-wireless@FreeBSD.ORG Fri Feb 24 22:59:58 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CACC106566B; Fri, 24 Feb 2012 22:59:58 +0000 (UTC) (envelope-from sendtomatt@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id 25EC08FC15; Fri, 24 Feb 2012 22:59:57 +0000 (UTC) Received: by daec6 with SMTP id c6so951190dae.13 for ; Fri, 24 Feb 2012 14:59:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=02qG7RUEhQYrucq1y85Wt4ESKyKOfIaKixblVw3nzXs=; b=URZkHD81OPFXqSpJ/Q2HLzvlm54rkORNtUuqsPkkv9Rj9DN0T2Tr8SmoR9kP7ygbml Uy8FittBNjwpS7mtOjQ0+mvQfVwRPbsNBLaPzMArs90rKFHYR2Fg4gNG9b0vlZtMsC/R m/TSCyC6maBgqPPKHPekS2WoExOkXPupifCYU= Received: by 10.68.125.233 with SMTP id mt9mr10645833pbb.119.1330124397683; Fri, 24 Feb 2012 14:59:57 -0800 (PST) Received: from flatline.local ([74.195.19.178]) by mx.google.com with ESMTPS id d4sm5493438pbe.36.2012.02.24.14.59.55 (version=SSLv3 cipher=OTHER); Fri, 24 Feb 2012 14:59:56 -0800 (PST) Message-ID: <4F48166A.5040301@gmail.com> Date: Fri, 24 Feb 2012 14:59:54 -0800 From: matt User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120218 Thunderbird/10.0.2 MIME-Version: 1.0 To: Adrian Chadd References: <4F41DDE8.6060004@gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2012 22:59:58 -0000 On 02/19/12 23:16, Adrian Chadd wrote: > Hiya, > > Do you have a semi-working driver? If so, let's get it tested and into > _a_ freebsd repo. Whether it's in projects or HEAD. > > I'd rather see it in the freebsd repo then bitrotting anywhere. > > > > Adrian > . > It looks like the git repo is actually Alexandr's earlier rt2860/rt2870/rt3090 driver that I'd already merged into the ral driver. It is 20months old, so I assume I merged as new a version as is in git. I'm going to test my old driver against HEAD/CURRENT and repost a link with tarball, diffs, etc w/ changes if necessary. I have the rt3090 in a pcie carrier on my desktop now, so I can continue testing. Matt From owner-freebsd-wireless@FreeBSD.ORG Fri Feb 24 23:07:57 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DD421065673 for ; Fri, 24 Feb 2012 23:07:57 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id C2F358FC0C for ; Fri, 24 Feb 2012 23:07:56 +0000 (UTC) Received: by werm13 with SMTP id m13so2601309wer.13 for ; Fri, 24 Feb 2012 15:07:55 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.105 as permitted sender) client-ip=10.180.95.105; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.105 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.95.105]) by 10.180.95.105 with SMTP id dj9mr9025467wib.18.1330124875698 (num_hops = 1); Fri, 24 Feb 2012 15:07:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=ximZU0/SpDZ93C3o1vMQduSJ70+E6UliCZ2sd3IQJhY=; b=mJAUIlDihphFM8KCbeBcsIMRpNtpWTxqCoa41kncBVLG8Z0Qo5rtX+RtJWaMjYOCcj iSqh4dwy3fanLY6+HZxsXnr89UYw5Tx2oekxO7wrB0DY9U5JpAbip0m6OsptwR0H8U6D 6dp6yY6k67cZspRah14WqVOMgxBiSxNQVp5pk= MIME-Version: 1.0 Received: by 10.180.95.105 with SMTP id dj9mr7261108wib.18.1330124875609; Fri, 24 Feb 2012 15:07:55 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Fri, 24 Feb 2012 15:07:55 -0800 (PST) In-Reply-To: <4F48166A.5040301@gmail.com> References: <4F41DDE8.6060004@gmail.com> <4F48166A.5040301@gmail.com> Date: Fri, 24 Feb 2012 15:07:55 -0800 X-Google-Sender-Auth: 3lN2jVUh2hJOdGRbK-8ulSY4Y_A Message-ID: From: Adrian Chadd To: matt Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2012 23:07:57 -0000 Hi, That'd be great, thanks! Adrian On 24 February 2012 14:59, matt wrote: > On 02/19/12 23:16, Adrian Chadd wrote: >> >> Hiya, >> >> Do you have a semi-working driver? If so, let's get it tested and into >> _a_ freebsd repo. Whether it's in projects or HEAD. >> >> I'd rather see it in the freebsd repo then bitrotting anywhere. >> >> >> >> Adrian >> . >> > It looks like the git repo is actually Alexandr's earlier > rt2860/rt2870/rt3090 driver that I'd already merged into the ral driver. > It is 20months old, so I assume I merged as new a version as is in git. > > I'm going to test my old driver against HEAD/CURRENT and repost a link with > tarball, diffs, etc w/ changes if necessary. > > I have the rt3090 in a pcie carrier on my desktop now, so I can continue > testing. > > Matt From owner-freebsd-wireless@FreeBSD.ORG Fri Feb 24 23:29:32 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECD91106566B for ; Fri, 24 Feb 2012 23:29:32 +0000 (UTC) (envelope-from nlopes.ml@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id A8F378FC14 for ; Fri, 24 Feb 2012 23:29:31 +0000 (UTC) Received: by iaeo4 with SMTP id o4so4759006iae.13 for ; Fri, 24 Feb 2012 15:29:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=1UiK7RMjpioE87tCAg9RTNQZ+9bwQ16Kj5pRcL9rClE=; b=KnyjdPmiVCOSdvzexjUcgfSX9p8CjPavey0o8ojzecpCXqAse2dv4iOx6xq3nnCiEZ 75RD+8i1zkWrXvtUZG8LM+VVCyPX/Pq5sh6R6cl+bFAZ5wYrppqdjFUVEVMOzfEPjuVc SFWweN08Rrv4Yr7wPbPk/S8Rp0WkeB2QKjOTo= MIME-Version: 1.0 Received: by 10.50.95.166 with SMTP id dl6mr4794215igb.27.1330126171299; Fri, 24 Feb 2012 15:29:31 -0800 (PST) Received: by 10.42.154.197 with HTTP; Fri, 24 Feb 2012 15:29:31 -0800 (PST) In-Reply-To: References: <4F41DDE8.6060004@gmail.com> <4F48166A.5040301@gmail.com> Date: Fri, 24 Feb 2012 15:29:31 -0800 Message-ID: From: Norberto Lopes To: Adrian Chadd Content-Type: text/plain; charset=UTF-8 Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Feb 2012 23:29:33 -0000 Oh by the way, drivers from http://repo.or.cz/w/ralink_drivers.git did not work at all. I haven't had a lot of time to play around with this so it may have been pebcak but it definitely didn't look good. On Fri, Feb 24, 2012 at 3:07 PM, Adrian Chadd wrote: > Hi, > > That'd be great, thanks! > > > > Adrian > > On 24 February 2012 14:59, matt wrote: >> On 02/19/12 23:16, Adrian Chadd wrote: >>> >>> Hiya, >>> >>> Do you have a semi-working driver? If so, let's get it tested and into >>> _a_ freebsd repo. Whether it's in projects or HEAD. >>> >>> I'd rather see it in the freebsd repo then bitrotting anywhere. >>> >>> >>> >>> Adrian >>> . >>> >> It looks like the git repo is actually Alexandr's earlier >> rt2860/rt2870/rt3090 driver that I'd already merged into the ral driver. >> It is 20months old, so I assume I merged as new a version as is in git. >> >> I'm going to test my old driver against HEAD/CURRENT and repost a link with >> tarball, diffs, etc w/ changes if necessary. >> >> I have the rt3090 in a pcie carrier on my desktop now, so I can continue >> testing. >> >> Matt From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 00:18:12 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AD3810656B9; Sat, 25 Feb 2012 00:18:12 +0000 (UTC) (envelope-from sendtomatt@gmail.com) Received: from mail-pz0-f54.google.com (mail-pz0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id CAA368FC14; Sat, 25 Feb 2012 00:18:11 +0000 (UTC) Received: by daec6 with SMTP id c6so1005739dae.13 for ; Fri, 24 Feb 2012 16:18:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=Gd8Wra3al0fC2wmPeUrbg4rj7tHoRxtSvbMhyxJMIm4=; b=apu/SArstxjTRYiYmkOa9FnrXmLtgAdCYOXdlOUxiB5gyhUMYC9KBMHBmi8AFlZe4d TCbyPZrmM7CQSaG3Wud/HLXMhe7A6oArrwsuQZjRYYXln4ktiOOTzkMKJhpQo3Ga7Rce f11mYGq3WIU6EbRS458vYcyrAsl0kNibAq2ZA= Received: by 10.68.129.130 with SMTP id nw2mr9931634pbb.8.1330129091348; Fri, 24 Feb 2012 16:18:11 -0800 (PST) Received: from flatline.local ([74.195.19.178]) by mx.google.com with ESMTPS id q8sm5653975pbn.20.2012.02.24.16.18.09 (version=SSLv3 cipher=OTHER); Fri, 24 Feb 2012 16:18:10 -0800 (PST) Message-ID: <4F4828C0.6020705@gmail.com> Date: Fri, 24 Feb 2012 16:18:08 -0800 From: matt User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:10.0.2) Gecko/20120218 Thunderbird/10.0.2 MIME-Version: 1.0 To: Norberto Lopes References: <4F41DDE8.6060004@gmail.com> <4F48166A.5040301@gmail.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-wireless@freebsd.org Subject: Re: Linksys WMP600N driver (Ralink RT2800 802.11n PCI) X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 00:18:12 -0000 On 02/24/12 15:29, Norberto Lopes wrote: > Oh by the way, drivers from http://repo.or.cz/w/ralink_drivers.git did > not work at all. > I haven't had a lot of time to play around with this so it may have > been pebcak but it definitely didn't look good. > > On Fri, Feb 24, 2012 at 3:07 PM, Adrian Chadd wrote: >> Hi, >> >> That'd be great, thanks! >> >> >> >> Adrian >> >> On 24 February 2012 14:59, matt wrote: >>> On 02/19/12 23:16, Adrian Chadd wrote: >>>> Hiya, >>>> >>>> Do you have a semi-working driver? If so, let's get it tested and into >>>> _a_ freebsd repo. Whether it's in projects or HEAD. >>>> >>>> I'd rather see it in the freebsd repo then bitrotting anywhere. >>>> >>>> >>>> >>>> Adrian >>>> . >>>> >>> It looks like the git repo is actually Alexandr's earlier >>> rt2860/rt2870/rt3090 driver that I'd already merged into the ral driver. >>> It is 20months old, so I assume I merged as new a version as is in git. >>> >>> I'm going to test my old driver against HEAD/CURRENT and repost a link with >>> tarball, diffs, etc w/ changes if necessary. >>> >>> I have the rt3090 in a pcie carrier on my desktop now, so I can continue >>> testing. >>> >>> Matt Norberto, are you running HEAD / recent CURRENT? I'm guessing you are since those drivers are for older versions... I'm not so sure about backporting what I have, but I'm pretty sure I can get it to work on latest HEAD. Thanks, Matt From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 08:03:31 2012 Return-Path: Delivered-To: freebsd-wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4903F1065670 for ; Sat, 25 Feb 2012 08:03:31 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id CA6758FC08 for ; Sat, 25 Feb 2012 08:03:30 +0000 (UTC) Received: by wibhn6 with SMTP id hn6so19292wib.13 for ; Sat, 25 Feb 2012 00:03:29 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.78.6 as permitted sender) client-ip=10.180.78.6; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.78.6 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.78.6]) by 10.180.78.6 with SMTP id x6mr2191617wiw.18.1330157009762 (num_hops = 1); Sat, 25 Feb 2012 00:03:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=6ojhneMijat34BTmIdDxOqmwO0x8fYeQrDZhjR6ucpk=; b=Hbi6LFfTNoBvgBoHONJC7FFW3HvDy129Fa12mzy5Mbq76hvJLIpIUP55s/7Et8h0WG pS3HjkxjnF4WfznBP8Cf4vD1sKQ+Ivf/pE4Lo5zfXbRRFnCyX0t02Wlj1j0nFswE96wd uh9XO7p5vHbxMgWj2nHf/4SlKxZbhd2y81+GI= MIME-Version: 1.0 Received: by 10.180.78.6 with SMTP id x6mr1714585wiw.18.1330157009673; Sat, 25 Feb 2012 00:03:29 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.154.199 with HTTP; Sat, 25 Feb 2012 00:03:29 -0800 (PST) In-Reply-To: <4F46216D.5040704@gmail.com> References: <4F36DAB0.2020803@gmail.com> <4f36df71.2139440a.10ce.fffffb81@mx.google.com> <4F370F21.3030300@gmail.com> <4F46216D.5040704@gmail.com> Date: Sat, 25 Feb 2012 00:03:29 -0800 X-Google-Sender-Auth: 9MR-X7SfEUwr_H0qCAzhf1-CgW0 Message-ID: From: Adrian Chadd To: "Sevan / Venture37" Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-wireless@freebsd.org Subject: Re: wi driver X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 08:03:31 -0000 Hi, I've just committed a fix to wi_info_intr(). The problem was that the vap list is empty (ie you hadn't created a VAP but brought up the interface) - so it paniced. Yes, I now have a BIG stack of these things. But I'm seeing interrupt storms; so I don't think my NIC is going to work well. That, and WPA doesn't work. :-) Adrian From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 14:11:06 2012 Return-Path: Delivered-To: wireless@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D8B10106566C; Sat, 25 Feb 2012 14:11:06 +0000 (UTC) (envelope-from jakobp78@gmail.com) Received: from mail-tul01m020-f182.google.com (mail-tul01m020-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 9011E8FC0A; Sat, 25 Feb 2012 14:11:06 +0000 (UTC) Received: by obcwo16 with SMTP id wo16so5035870obc.13 for ; Sat, 25 Feb 2012 06:11:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=VlRkwvbaYCw+pkiwC5ymPNp9uV8cFY09pPDIm7a0Yy4=; b=wrh8frqNEJNrOaJicOxqen6tyiSvNAaxLF9VliOG5vvze/0jwJgEMagAtV5Q8EoSY7 m3SQT/dfqRpABwjz9TODefRDJjQ7pIp5AUhJprK3KSZ6E4bVh12/xjX4gw3ge9yA/SDc p5a0qVL6JhwfU3hvDAMIWgJSYjVcVoJnRGdPQ= MIME-Version: 1.0 Received: by 10.182.216.101 with SMTP id op5mr2037418obc.54.1330177513952; Sat, 25 Feb 2012 05:45:13 -0800 (PST) Received: by 10.182.39.193 with HTTP; Sat, 25 Feb 2012 05:45:13 -0800 (PST) In-Reply-To: References: Date: Sat, 25 Feb 2012 15:45:13 +0200 Message-ID: From: Jakob Pedersen To: Adrian Chadd Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: mobile@freebsd.org, wireless@freebsd.org Subject: Re: Problems with RaLink rt61pci/rt2561 wifi card X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 14:11:06 -0000 Hi Adrian, Thank you for the tips for diagnosing my WiFi issue. It seems to be the gain settings on the wifi card somehow (I am in not much of a technical person, but at least that's what it seems to me). For PC-BSD the signal strength is measured to -54 dB just next to the router and when stepping away like 5 - 6 metres the signal is lost at -95 dB (Same level as noise dB level). The decrease in not sudden but drops gradually when distance to router is being increased. I am dual booting Arch linux on the same laptop, where WiFi works fine and it measures - 20 dBm next to the router and - 70 dBm where PC-BSD looses connection. Not really sure, what to do from here though.. But thanks, anyway! Jakob On Wed, Feb 15, 2012 at 8:09 AM, Adrian Chadd wrote: > Hi, > > It sounds like it could be: > > * low TX power from your device; > * Really bad RX gain settings somehow; > * other fruity radio related stuff. > > The trouble is going to be diagnosing it. What I do in these instances > is use a known-good setup (i have a bunch of laptops with AR9280's in > them for this reason) to use in monitor mode - I can then get a rough > estimate of TX power by just sniffing the frames your device is > sending. > > That'd hopefully identify whether it's a TX or an RX problem. > > If the device works in monitor mode, you could try that: > > tcpdump -ni wlan0 -y IEEE802_11_RADIO > > Connect, then walk away from the AP. See if the RX RSSI fields in the > tcpdump drop suddenly. If you get a few metres away and you're still > receiving things strong, it may be a TX issue. If you suddenly stop > hearing anything, it's likely an RX issue. > > Good luck! > > > Adrian > From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 19:03:14 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B47B8106564A; Sat, 25 Feb 2012 19:03:14 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 87C298FC16; Sat, 25 Feb 2012 19:03:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1PJ3EDx091962; Sat, 25 Feb 2012 19:03:14 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1PJ3EwU091958; Sat, 25 Feb 2012 19:03:14 GMT (envelope-from adrian) Date: Sat, 25 Feb 2012 19:03:14 GMT Message-Id: <201202251903.q1PJ3EwU091958@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/165382: [kernel] taskqueue_unblock doesn't unblock currently queued tasks X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 19:03:14 -0000 Synopsis: [kernel] taskqueue_unblock doesn't unblock currently queued tasks Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Sat Feb 25 19:02:48 UTC 2012 Responsible-Changed-Why: Flipping to -wireless for now.. http://www.freebsd.org/cgi/query-pr.cgi?pr=165382 From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 19:20:13 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53C9B1065672 for ; Sat, 25 Feb 2012 19:20:13 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3E5218FC08 for ; Sat, 25 Feb 2012 19:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1PJKDlf002706 for ; Sat, 25 Feb 2012 19:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1PJKDg8002704; Sat, 25 Feb 2012 19:20:13 GMT (envelope-from gnats) Date: Sat, 25 Feb 2012 19:20:13 GMT Message-Id: <201202251920.q1PJKDg8002704@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/165382: commit references a PR X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 19:20:13 -0000 The following reply was made to PR kern/165382; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/165382: commit references a PR Date: Sat, 25 Feb 2012 19:13:09 +0000 (UTC) Author: adrian Date: Sat Feb 25 19:12:54 2012 New Revision: 232163 URL: http://svn.freebsd.org/changeset/base/232163 Log: Attempt to further fix some of the concurrency/reset issues that occur. * ath_reset() is being called in softclock context, which may have the thing sleep on a lock. To avoid this, since we really _shouldn't_ be sleeping on any locks, break out the no-loss reset path into a tasklet and call that from: + ath_calibrate() + ath_watchdog() This has the added advantage that it'll end up also doing the frame RX cleanup from within the taskqueue context, rather than the softclock context. * Shuffle around the taskqueue_block() call to be before we grab the lock and disable interrupts. The trouble here is that taskqueue_block() doesn't block currently queued (but not yet running) tasks so calling it doesn't guarantee no further tasks (that weren't running on _A_ CPU at the time of this call) will complete. Calling taskqueue_drain() on these tasks won't work because if any _other_ thread calls taskqueue_enqueue() for whatever reason, everything gets very angry and stops working. This slightly changes the race condition enough to let ath_rx_tasklet() run before we try disabling it, and thus quietens the warnings a bit. The (more) true solution will be doing something like the following: * having a taskqueue_blocked mask in ath_softc; * having an interrupt_blocked mask in ath_softc; * only calling taskqueue_drain() on each individual task _after_ the lock has been acquired - that way no further tasklet scheduling is going to occur. * Then once the tasks have been blocked _and_ the interrupt has been disabled, call taskqueue_drain() on each, ensuring that anything that _was_ scheduled or running is removed. The trouble is if something calls taskqueue_enqueue() on a task after taskqueue_blocked() has been called but BEFORE taskqueue_drain() has been called, ta_pending will be set to 1 and taskqueue_drain() will sit there stuck in msleep() until you hard-kill the machine. PR: kern/165382 PR: kern/165220 Modified: head/sys/dev/ath/if_ath.c head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Sat Feb 25 18:48:06 2012 (r232162) +++ head/sys/dev/ath/if_ath.c Sat Feb 25 19:12:54 2012 (r232163) @@ -159,6 +159,7 @@ static void ath_beacon_proc(void *, int) static struct ath_buf *ath_beacon_generate(struct ath_softc *, struct ieee80211vap *); static void ath_bstuck_proc(void *, int); +static void ath_reset_proc(void *, int); static void ath_beacon_return(struct ath_softc *, struct ath_buf *); static void ath_beacon_free(struct ath_softc *); static void ath_beacon_config(struct ath_softc *, struct ieee80211vap *); @@ -392,6 +393,7 @@ ath_attach(u_int16_t devid, struct ath_s TASK_INIT(&sc->sc_rxtask, 0, ath_rx_tasklet, sc); TASK_INIT(&sc->sc_bmisstask, 0, ath_bmiss_proc, sc); TASK_INIT(&sc->sc_bstucktask,0, ath_bstuck_proc, sc); + TASK_INIT(&sc->sc_resettask,0, ath_reset_proc, sc); /* * Allocate hardware transmit queues: one queue for @@ -1910,9 +1912,6 @@ ath_txrx_stop_locked(struct ath_softc *s ATH_UNLOCK_ASSERT(sc); ATH_PCU_LOCK_ASSERT(sc); - /* Stop any new TX/RX from occuring */ - taskqueue_block(sc->sc_tq); - /* * Sleep until all the pending operations have completed. * @@ -2050,6 +2049,9 @@ ath_reset(struct ifnet *ifp, ATH_RESET_T ATH_PCU_UNLOCK_ASSERT(sc); ATH_UNLOCK_ASSERT(sc); + /* Try to (stop any further TX/RX from occuring */ + taskqueue_block(sc->sc_tq); + ATH_PCU_LOCK(sc); ath_hal_intrset(ah, 0); /* disable interrupts */ ath_txrx_stop_locked(sc); /* Ensure TX/RX is stopped */ @@ -3163,6 +3165,23 @@ ath_beacon_start_adhoc(struct ath_softc } /* + * Reset the hardware, with no loss. + * + * This can't be used for a general case reset. + */ +static void +ath_reset_proc(void *arg, int pending) +{ + struct ath_softc *sc = arg; + struct ifnet *ifp = sc->sc_ifp; + +#if 0 + if_printf(ifp, "%s: resetting\n", __func__); +#endif + ath_reset(ifp, ATH_RESET_NOLOSS); +} + +/* * Reset the hardware after detecting beacons have stopped. */ static void @@ -5387,6 +5406,12 @@ ath_chan_set(struct ath_softc *sc, struc int ret = 0; /* Treat this as an interface reset */ + ATH_PCU_UNLOCK_ASSERT(sc); + ATH_UNLOCK_ASSERT(sc); + + /* (Try to) stop TX/RX from occuring */ + taskqueue_block(sc->sc_tq); + ATH_PCU_LOCK(sc); ath_hal_intrset(ah, 0); /* Stop new RX/TX completion */ ath_txrx_stop_locked(sc); /* Stop pending RX/TX completion */ @@ -5526,18 +5551,10 @@ ath_calibrate(void *arg) DPRINTF(sc, ATH_DEBUG_CALIBRATE, "%s: rfgain change\n", __func__); sc->sc_stats.ast_per_rfgain++; - /* - * Drop lock - we can't hold it across the - * ath_reset() call. Instead, we'll drop - * out here, do a reset, then reschedule - * the callout. - */ - callout_reset(&sc->sc_cal_ch, 1, ath_calibrate, sc); sc->sc_resetcal = 0; sc->sc_doresetcal = AH_TRUE; - ATH_UNLOCK(sc); - ath_reset(ifp, ATH_RESET_NOLOSS); - ATH_LOCK(sc); + taskqueue_enqueue(sc->sc_tq, &sc->sc_resettask); + callout_reset(&sc->sc_cal_ch, 1, ath_calibrate, sc); return; } /* @@ -6187,11 +6204,12 @@ ath_watchdog(void *arg) /* * We can't hold the lock across the ath_reset() call. + * + * And since this routine can't hold a lock and sleep, + * do the reset deferred. */ if (do_reset) { - ATH_UNLOCK(sc); - ath_reset(sc->sc_ifp, ATH_RESET_NOLOSS); - ATH_LOCK(sc); + taskqueue_enqueue(sc->sc_tq, &sc->sc_resettask); } callout_schedule(&sc->sc_wd_ch, hz); Modified: head/sys/dev/ath/if_athvar.h ============================================================================== --- head/sys/dev/ath/if_athvar.h Sat Feb 25 18:48:06 2012 (r232162) +++ head/sys/dev/ath/if_athvar.h Sat Feb 25 19:12:54 2012 (r232163) @@ -501,6 +501,7 @@ struct ath_softc { struct ath_txq *sc_cabq; /* tx q for cab frames */ struct task sc_bmisstask; /* bmiss int processing */ struct task sc_bstucktask; /* stuck beacon processing */ + struct task sc_resettask; /* interface reset task */ enum { OK, /* no change needed */ UPDATE, /* update pending */ _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 19:20:15 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E9821065673 for ; Sat, 25 Feb 2012 19:20:15 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 79D718FC0C for ; Sat, 25 Feb 2012 19:20:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1PJKFJw002713 for ; Sat, 25 Feb 2012 19:20:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1PJKFJT002712; Sat, 25 Feb 2012 19:20:15 GMT (envelope-from gnats) Date: Sat, 25 Feb 2012 19:20:15 GMT Message-Id: <201202251920.q1PJKFJT002712@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: kern/165220: commit references a PR X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 19:20:15 -0000 The following reply was made to PR kern/165220; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/165220: commit references a PR Date: Sat, 25 Feb 2012 19:13:10 +0000 (UTC) Author: adrian Date: Sat Feb 25 19:12:54 2012 New Revision: 232163 URL: http://svn.freebsd.org/changeset/base/232163 Log: Attempt to further fix some of the concurrency/reset issues that occur. * ath_reset() is being called in softclock context, which may have the thing sleep on a lock. To avoid this, since we really _shouldn't_ be sleeping on any locks, break out the no-loss reset path into a tasklet and call that from: + ath_calibrate() + ath_watchdog() This has the added advantage that it'll end up also doing the frame RX cleanup from within the taskqueue context, rather than the softclock context. * Shuffle around the taskqueue_block() call to be before we grab the lock and disable interrupts. The trouble here is that taskqueue_block() doesn't block currently queued (but not yet running) tasks so calling it doesn't guarantee no further tasks (that weren't running on _A_ CPU at the time of this call) will complete. Calling taskqueue_drain() on these tasks won't work because if any _other_ thread calls taskqueue_enqueue() for whatever reason, everything gets very angry and stops working. This slightly changes the race condition enough to let ath_rx_tasklet() run before we try disabling it, and thus quietens the warnings a bit. The (more) true solution will be doing something like the following: * having a taskqueue_blocked mask in ath_softc; * having an interrupt_blocked mask in ath_softc; * only calling taskqueue_drain() on each individual task _after_ the lock has been acquired - that way no further tasklet scheduling is going to occur. * Then once the tasks have been blocked _and_ the interrupt has been disabled, call taskqueue_drain() on each, ensuring that anything that _was_ scheduled or running is removed. The trouble is if something calls taskqueue_enqueue() on a task after taskqueue_blocked() has been called but BEFORE taskqueue_drain() has been called, ta_pending will be set to 1 and taskqueue_drain() will sit there stuck in msleep() until you hard-kill the machine. PR: kern/165382 PR: kern/165220 Modified: head/sys/dev/ath/if_ath.c head/sys/dev/ath/if_athvar.h Modified: head/sys/dev/ath/if_ath.c ============================================================================== --- head/sys/dev/ath/if_ath.c Sat Feb 25 18:48:06 2012 (r232162) +++ head/sys/dev/ath/if_ath.c Sat Feb 25 19:12:54 2012 (r232163) @@ -159,6 +159,7 @@ static void ath_beacon_proc(void *, int) static struct ath_buf *ath_beacon_generate(struct ath_softc *, struct ieee80211vap *); static void ath_bstuck_proc(void *, int); +static void ath_reset_proc(void *, int); static void ath_beacon_return(struct ath_softc *, struct ath_buf *); static void ath_beacon_free(struct ath_softc *); static void ath_beacon_config(struct ath_softc *, struct ieee80211vap *); @@ -392,6 +393,7 @@ ath_attach(u_int16_t devid, struct ath_s TASK_INIT(&sc->sc_rxtask, 0, ath_rx_tasklet, sc); TASK_INIT(&sc->sc_bmisstask, 0, ath_bmiss_proc, sc); TASK_INIT(&sc->sc_bstucktask,0, ath_bstuck_proc, sc); + TASK_INIT(&sc->sc_resettask,0, ath_reset_proc, sc); /* * Allocate hardware transmit queues: one queue for @@ -1910,9 +1912,6 @@ ath_txrx_stop_locked(struct ath_softc *s ATH_UNLOCK_ASSERT(sc); ATH_PCU_LOCK_ASSERT(sc); - /* Stop any new TX/RX from occuring */ - taskqueue_block(sc->sc_tq); - /* * Sleep until all the pending operations have completed. * @@ -2050,6 +2049,9 @@ ath_reset(struct ifnet *ifp, ATH_RESET_T ATH_PCU_UNLOCK_ASSERT(sc); ATH_UNLOCK_ASSERT(sc); + /* Try to (stop any further TX/RX from occuring */ + taskqueue_block(sc->sc_tq); + ATH_PCU_LOCK(sc); ath_hal_intrset(ah, 0); /* disable interrupts */ ath_txrx_stop_locked(sc); /* Ensure TX/RX is stopped */ @@ -3163,6 +3165,23 @@ ath_beacon_start_adhoc(struct ath_softc } /* + * Reset the hardware, with no loss. + * + * This can't be used for a general case reset. + */ +static void +ath_reset_proc(void *arg, int pending) +{ + struct ath_softc *sc = arg; + struct ifnet *ifp = sc->sc_ifp; + +#if 0 + if_printf(ifp, "%s: resetting\n", __func__); +#endif + ath_reset(ifp, ATH_RESET_NOLOSS); +} + +/* * Reset the hardware after detecting beacons have stopped. */ static void @@ -5387,6 +5406,12 @@ ath_chan_set(struct ath_softc *sc, struc int ret = 0; /* Treat this as an interface reset */ + ATH_PCU_UNLOCK_ASSERT(sc); + ATH_UNLOCK_ASSERT(sc); + + /* (Try to) stop TX/RX from occuring */ + taskqueue_block(sc->sc_tq); + ATH_PCU_LOCK(sc); ath_hal_intrset(ah, 0); /* Stop new RX/TX completion */ ath_txrx_stop_locked(sc); /* Stop pending RX/TX completion */ @@ -5526,18 +5551,10 @@ ath_calibrate(void *arg) DPRINTF(sc, ATH_DEBUG_CALIBRATE, "%s: rfgain change\n", __func__); sc->sc_stats.ast_per_rfgain++; - /* - * Drop lock - we can't hold it across the - * ath_reset() call. Instead, we'll drop - * out here, do a reset, then reschedule - * the callout. - */ - callout_reset(&sc->sc_cal_ch, 1, ath_calibrate, sc); sc->sc_resetcal = 0; sc->sc_doresetcal = AH_TRUE; - ATH_UNLOCK(sc); - ath_reset(ifp, ATH_RESET_NOLOSS); - ATH_LOCK(sc); + taskqueue_enqueue(sc->sc_tq, &sc->sc_resettask); + callout_reset(&sc->sc_cal_ch, 1, ath_calibrate, sc); return; } /* @@ -6187,11 +6204,12 @@ ath_watchdog(void *arg) /* * We can't hold the lock across the ath_reset() call. + * + * And since this routine can't hold a lock and sleep, + * do the reset deferred. */ if (do_reset) { - ATH_UNLOCK(sc); - ath_reset(sc->sc_ifp, ATH_RESET_NOLOSS); - ATH_LOCK(sc); + taskqueue_enqueue(sc->sc_tq, &sc->sc_resettask); } callout_schedule(&sc->sc_wd_ch, hz); Modified: head/sys/dev/ath/if_athvar.h ============================================================================== --- head/sys/dev/ath/if_athvar.h Sat Feb 25 18:48:06 2012 (r232162) +++ head/sys/dev/ath/if_athvar.h Sat Feb 25 19:12:54 2012 (r232163) @@ -501,6 +501,7 @@ struct ath_softc { struct ath_txq *sc_cabq; /* tx q for cab frames */ struct task sc_bmisstask; /* bmiss int processing */ struct task sc_bstucktask; /* stuck beacon processing */ + struct task sc_resettask; /* interface reset task */ enum { OK, /* no change needed */ UPDATE, /* update pending */ _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 19:53:58 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56B7E106566C; Sat, 25 Feb 2012 19:53:58 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 28C308FC18; Sat, 25 Feb 2012 19:53:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1PJrvQU038517; Sat, 25 Feb 2012 19:53:57 GMT (envelope-from adrian@freefall.freebsd.org) Received: (from adrian@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1PJrvrN038513; Sat, 25 Feb 2012 19:53:57 GMT (envelope-from adrian) Date: Sat, 25 Feb 2012 19:53:57 GMT Message-Id: <201202251953.q1PJrvrN038513@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-wireless@FreeBSD.org From: adrian@FreeBSD.org Cc: Subject: Re: kern/165475: [ath] operational mode change doesn't poke the underlying rate control module hard enough X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 19:53:58 -0000 Synopsis: [ath] operational mode change doesn't poke the underlying rate control module hard enough Responsible-Changed-From-To: freebsd-bugs->freebsd-wireless Responsible-Changed-By: adrian Responsible-Changed-When: Sat Feb 25 19:53:43 UTC 2012 Responsible-Changed-Why: Reassign http://www.freebsd.org/cgi/query-pr.cgi?pr=165475 From owner-freebsd-wireless@FreeBSD.ORG Sat Feb 25 23:30:16 2012 Return-Path: Delivered-To: freebsd-wireless@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61B4D1065670 for ; Sat, 25 Feb 2012 23:30:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D4EC8FC08 for ; Sat, 25 Feb 2012 23:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1PNUGSb034560 for ; Sat, 25 Feb 2012 23:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1PNUGNd034557; Sat, 25 Feb 2012 23:30:16 GMT (envelope-from gnats) Date: Sat, 25 Feb 2012 23:30:16 GMT Message-Id: <201202252330.q1PNUGNd034557@freefall.freebsd.org> To: freebsd-wireless@FreeBSD.org From: Adrian Chadd Cc: Subject: Re: kern/163318: [ath] ath(4) stops working X-BeenThere: freebsd-wireless@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adrian Chadd List-Id: "Discussions of 802.11 stack, tools device driver development." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Feb 2012 23:30:16 -0000 The following reply was made to PR kern/163318; it has been noted by GNATS. From: Adrian Chadd To: Joel Dahl Cc: bug-followup@freebsd.org Subject: Re: kern/163318: [ath] ath(4) stops working Date: Sat, 25 Feb 2012 15:22:49 -0800 Hi Joel, I've been exploring this a little further. I wonder if the actual bg scan task is stuck - even though scan start/end is being called correctly inside scan_task(), I wonder if something is trampling over the flags at the same time and causing scan_task() to think another scan is coming, but never does. A bgscan should be occuring every X seconds though. So I wonder why it wouldn't next be running. So would you mind plugging it back in and having it fail, then once it does: wlandebug +power +scan And then let's see if it actually _does_ try to do background scanning once it's hung. I hope it prints something useful about why it isn't running. Thanks, adrian