All of lore.kernel.org
 help / color / mirror / Atom feed
* PowerPC agpmode issues
@ 2016-02-05  2:47 Mike
  2016-02-05  7:49 ` Denis Kirjanov
                   ` (2 more replies)
  0 siblings, 3 replies; 33+ messages in thread
From: Mike @ 2016-02-05  2:47 UTC (permalink / raw)
  To: Pranith Kumar; +Cc: Aneesh Kumar K.V, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 1664 bytes --]

Hi.
Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
patch from Michel Dànzer, next problem is of course enabling agpmode,
running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
and seems to load the cpu a lot.

Upon initial investigation i could not initially believe agp could be this
this broken for this long, until i found this.
 "committed with Ben Skeggs on Feb 26, 2013"
https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
#ifdef __powerpc__
/* Disable AGP by default on all PowerPC machines for
* now -- At least some UniNorth-2 AGP bridges are
* known to be broken: DMA from the host to the card
* works just fine, but writeback from the card to the
* host goes straight to memory untranslated bypassing
* the GATT somehow, making them quite painful to deal
* with...
*/
if (nouveau_agpmode == -1)
return false;
#endif

 and now later this:
https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
#ifdef __powerpc__
/* Disable AGP by default on all PowerPC machines for now -- At
* least some UniNorth-2 AGP bridges are known to be broken:
* DMA from the host to the card works just fine, but writeback
* from the card to the host goes straight to memory
* untranslated bypassing that GATT somehow, making them quite
* painful to deal with...
*/
mode = 0;
#endif

All seems to point to serious issues had around the time of change to ums
to kms and a serious regression hitting the linux kernel? No?

Cheers
-Mike

[-- Attachment #2: Type: text/html, Size: 4022 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05  2:47 PowerPC agpmode issues Mike
@ 2016-02-05  7:49 ` Denis Kirjanov
  2016-02-05 14:42   ` Mike
  2016-02-05 14:32 ` Herminio Hernandez Jr. 
  2016-02-08  9:53 ` Michel Dänzer
  2 siblings, 1 reply; 33+ messages in thread
From: Denis Kirjanov @ 2016-02-05  7:49 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

On 2/5/16, Mike <michael.heltne@gmail.com> wrote:
> Hi.
> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> patch from Michel D=C3=A0nzer, next problem is of course enabling agpmode=
,
> running with pci-mode with radeon.agpmode=3D-1 works, but is of course sl=
ow,
> and seems to load the cpu a lot.

For me nouveau on quad pmac is also broken for years(?) :/

>
> Upon initial investigation i could not initially believe agp could be thi=
s
> this broken for this long, until i found this.
>  "committed with Ben Skeggs on Feb 26, 2013"
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba4=
45abc0efcfe3890a
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.=
c?v=3D4.2
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for
> * now -- At least some UniNorth-2 AGP bridges are
> * known to be broken: DMA from the host to the card
> * works just fine, but writeback from the card to the
> * host goes straight to memory untranslated bypassing
> * the GATT somehow, making them quite painful to deal
> * with...
> */
> if (nouveau_agpmode =3D=3D -1)
> return false;
> #endif
>
>  and now later this:
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvk=
m/subdev/pci/agp.c
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for now -- At
> * least some UniNorth-2 AGP bridges are known to be broken:
> * DMA from the host to the card works just fine, but writeback
> * from the card to the host goes straight to memory
> * untranslated bypassing that GATT somehow, making them quite
> * painful to deal with...
> */
> mode =3D 0;
> #endif
>
> All seems to point to serious issues had around the time of change to ums
> to kms and a serious regression hitting the linux kernel? No?
>
> Cheers
> -Mike
>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05  2:47 PowerPC agpmode issues Mike
  2016-02-05  7:49 ` Denis Kirjanov
@ 2016-02-05 14:32 ` Herminio Hernandez Jr. 
  2016-02-05 14:44   ` Mike
  2016-08-25  3:09   ` Mike
  2016-02-08  9:53 ` Michel Dänzer
  2 siblings, 2 replies; 33+ messages in thread
From: Herminio Hernandez Jr.  @ 2016-02-05 14:32 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 2111 bytes --]

I have been experiencing the same thing with my iBook and PowerBook. 

Sent from my iPhone

> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
> 
> Hi. 
> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013 patch from Michel Dànzer, next problem is of course enabling agpmode, running with pci-mode with radeon.agpmode=-1 works, but is of course slow, and seems to load the cpu a lot.
> 
> Upon initial investigation i could not initially believe agp could be this this broken for this long, until i found this.
>  "committed with Ben Skeggs on Feb 26, 2013"
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> #ifdef __powerpc__
> 		/* Disable AGP by default on all PowerPC machines for
> 		 * now -- At least some UniNorth-2 AGP bridges are
> 		 * known to be broken: DMA from the host to the card
> 		 * works just fine, but writeback from the card to the
> 		 * host goes straight to memory untranslated bypassing
> 		 * the GATT somehow, making them quite painful to deal
> 		 * with...
> 		 */
> 		if (nouveau_agpmode == -1)
> 			return false;
> #endif
>  
>  and now later this: 
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> #ifdef __powerpc__
> 	/* Disable AGP by default on all PowerPC machines for now -- At
> 	 * least some UniNorth-2 AGP bridges are known to be broken:
> 	 * DMA from the host to the card works just fine, but writeback
> 	 * from the card to the host goes straight to memory
> 	 * untranslated bypassing that GATT somehow, making them quite
> 	 * painful to deal with...
> 	 */
> 	mode = 0;
> #endif
> 
> All seems to point to serious issues had around the time of change to ums to kms and a serious regression hitting the linux kernel? No?
> 
> Cheers
> -Mike
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev

[-- Attachment #2: Type: text/html, Size: 4821 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05  7:49 ` Denis Kirjanov
@ 2016-02-05 14:42   ` Mike
  0 siblings, 0 replies; 33+ messages in thread
From: Mike @ 2016-02-05 14:42 UTC (permalink / raw)
  To: Denis Kirjanov
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 3370 bytes --]

Put the info forth in an Amiga ppc related thread, agpmode=-1 is also
needed on the Pegasos 2, need do some research/googling but is it safe to
say its broken for all non x86 platforms?

Including those replies here:
----
Hi Christian and Mike,
for my personal experiences on Pegasos2 and MacMini G4 the performance was
 good on 3D and 2D but need the agpmode=-1 or the system freeze
adding the agpmode=-1 make loose performances but make the system working
this because the gpu without that append was over working it was look like
software overclocked.
 About agp macs a guy on ubuntuforums boost his performance adding this to
the kernel append  "quiet splash radeon.modeset=0
video=radeonfb:1280x960-32@60 "

About Pegasos2 i had it with 9800pro and the machine was running great.
Alex i know is a geek with this machine that i dont have any moore or
better i have another one died :-
---

Hi Luigi.

Thanks. Remember the modeset=0 flag my self from a while back, had to be
appended to either the kernel or as an option the the module. What a sorry
state.. I think agpmode=-1 masks a bunch of issues, degrading performance
due to some hittage of the cpu unnecessary, thats my suspicion anyway.
likely if ever a fix is found it will reveal a bunch of other issues is my
fear.
----



On 5 February 2016 at 07:49, Denis Kirjanov <kda@linux-powerpc.org> wrote:

> On 2/5/16, Mike <michael.heltne@gmail.com> wrote:
> > Hi.
> > Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> > patch from Michel Dànzer, next problem is of course enabling agpmode,
> > running with pci-mode with radeon.agpmode=-1 works, but is of course
> slow,
> > and seems to load the cpu a lot.
>
> For me nouveau on quad pmac is also broken for years(?) :/
>
> >
> > Upon initial investigation i could not initially believe agp could be
> this
> > this broken for this long, until i found this.
> >  "committed with Ben Skeggs on Feb 26, 2013"
> >
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
> >
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for
> > * now -- At least some UniNorth-2 AGP bridges are
> > * known to be broken: DMA from the host to the card
> > * works just fine, but writeback from the card to the
> > * host goes straight to memory untranslated bypassing
> > * the GATT somehow, making them quite painful to deal
> > * with...
> > */
> > if (nouveau_agpmode == -1)
> > return false;
> > #endif
> >
> >  and now later this:
> >
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for now -- At
> > * least some UniNorth-2 AGP bridges are known to be broken:
> > * DMA from the host to the card works just fine, but writeback
> > * from the card to the host goes straight to memory
> > * untranslated bypassing that GATT somehow, making them quite
> > * painful to deal with...
> > */
> > mode = 0;
> > #endif
> >
> > All seems to point to serious issues had around the time of change to ums
> > to kms and a serious regression hitting the linux kernel? No?
> >
> > Cheers
> > -Mike
> >
>

[-- Attachment #2: Type: text/html, Size: 6001 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 14:32 ` Herminio Hernandez Jr. 
@ 2016-02-05 14:44   ` Mike
  2016-02-05 17:51     ` Herminio Hernandez, Jr.
  2016-08-25  3:09   ` Mike
  1 sibling, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-05 14:44 UTC (permalink / raw)
  To: Herminio Hernandez Jr.
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 2452 bytes --]

Herminio,

Ok, take a look at this.
https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on stable
maybe this is more fitting
https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only fixes
the issue for r300 on powerpc though.

On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
herminio.hernandezjr@gmail.com> wrote:

> I have been experiencing the same thing with my iBook and PowerBook.
>
> Sent from my iPhone
>
> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>
> Hi.
> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> patch from Michel Dànzer, next problem is of course enabling agpmode,
> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
> and seems to load the cpu a lot.
>
> Upon initial investigation i could not initially believe agp could be this
> this broken for this long, until i found this.
>  "committed with Ben Skeggs on Feb 26, 2013"
>
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for
> * now -- At least some UniNorth-2 AGP bridges are
> * known to be broken: DMA from the host to the card
> * works just fine, but writeback from the card to the
> * host goes straight to memory untranslated bypassing
> * the GATT somehow, making them quite painful to deal
> * with...
> */
> if (nouveau_agpmode == -1)
> return false;
> #endif
>
>  and now later this:
>
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for now -- At
> * least some UniNorth-2 AGP bridges are known to be broken:
> * DMA from the host to the card works just fine, but writeback
> * from the card to the host goes straight to memory
> * untranslated bypassing that GATT somehow, making them quite
> * painful to deal with...
> */
> mode = 0;
> #endif
>
> All seems to point to serious issues had around the time of change to ums
> to kms and a serious regression hitting the linux kernel? No?
>
> Cheers
> -Mike
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
>
>

[-- Attachment #2: Type: text/html, Size: 5585 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 14:44   ` Mike
@ 2016-02-05 17:51     ` Herminio Hernandez, Jr.
  2016-02-05 18:06       ` Mike
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-02-05 17:51 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 2796 bytes --]

I have already applied his patches on my PowerBook running Jessie to get
accelerated graphics. However they are only a work around and not a real
fix so they will be committed to mesa.

On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:

> Herminio,
>
> Ok, take a look at this.
> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on stable
> maybe this is more fitting
> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only fixes
> the issue for r300 on powerpc though.
>
> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
> herminio.hernandezjr@gmail.com> wrote:
>
>> I have been experiencing the same thing with my iBook and PowerBook.
>>
>> Sent from my iPhone
>>
>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>
>> Hi.
>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
>> patch from Michel Dànzer, next problem is of course enabling agpmode,
>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>> and seems to load the cpu a lot.
>>
>> Upon initial investigation i could not initially believe agp could be
>> this this broken for this long, until i found this.
>>  "committed with Ben Skeggs on Feb 26, 2013"
>>
>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>
>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>> #ifdef __powerpc__
>> /* Disable AGP by default on all PowerPC machines for
>> * now -- At least some UniNorth-2 AGP bridges are
>> * known to be broken: DMA from the host to the card
>> * works just fine, but writeback from the card to the
>> * host goes straight to memory untranslated bypassing
>> * the GATT somehow, making them quite painful to deal
>> * with...
>> */
>> if (nouveau_agpmode == -1)
>> return false;
>> #endif
>>
>>  and now later this:
>>
>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>> #ifdef __powerpc__
>> /* Disable AGP by default on all PowerPC machines for now -- At
>> * least some UniNorth-2 AGP bridges are known to be broken:
>> * DMA from the host to the card works just fine, but writeback
>> * from the card to the host goes straight to memory
>> * untranslated bypassing that GATT somehow, making them quite
>> * painful to deal with...
>> */
>> mode = 0;
>> #endif
>>
>> All seems to point to serious issues had around the time of change to ums
>> to kms and a serious regression hitting the linux kernel? No?
>>
>> Cheers
>> -Mike
>>
>> _______________________________________________
>> Linuxppc-dev mailing list
>> Linuxppc-dev@lists.ozlabs.org
>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>
>>
>

[-- Attachment #2: Type: text/html, Size: 6211 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 17:51     ` Herminio Hernandez, Jr.
@ 2016-02-05 18:06       ` Mike
  2016-02-05 18:08         ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-05 18:06 UTC (permalink / raw)
  To: Herminio Hernandez, Jr.
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 3181 bytes --]

True, a permanent patch was needed, but at least we are up and running and
can identify other issues.. In the thread with the patches it is
highlighted that the drivers are broken in the first place

On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
herminio.hernandezjr@gmail.com> wrote:

> I have already applied his patches on my PowerBook running Jessie to get
> accelerated graphics. However they are only a work around and not a real
> fix so they will be committed to mesa.
>
> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:
>
>> Herminio,
>>
>> Ok, take a look at this.
>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on stable
>> maybe this is more fitting
>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>> fixes the issue for r300 on powerpc though.
>>
>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>> herminio.hernandezjr@gmail.com> wrote:
>>
>>> I have been experiencing the same thing with my iBook and PowerBook.
>>>
>>> Sent from my iPhone
>>>
>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>
>>> Hi.
>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
>>> patch from Michel Dànzer, next problem is of course enabling agpmode,
>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>> and seems to load the cpu a lot.
>>>
>>> Upon initial investigation i could not initially believe agp could be
>>> this this broken for this long, until i found this.
>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>
>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>
>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>> #ifdef __powerpc__
>>> /* Disable AGP by default on all PowerPC machines for
>>> * now -- At least some UniNorth-2 AGP bridges are
>>> * known to be broken: DMA from the host to the card
>>> * works just fine, but writeback from the card to the
>>> * host goes straight to memory untranslated bypassing
>>> * the GATT somehow, making them quite painful to deal
>>> * with...
>>> */
>>> if (nouveau_agpmode == -1)
>>> return false;
>>> #endif
>>>
>>>  and now later this:
>>>
>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>> #ifdef __powerpc__
>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>> * DMA from the host to the card works just fine, but writeback
>>> * from the card to the host goes straight to memory
>>> * untranslated bypassing that GATT somehow, making them quite
>>> * painful to deal with...
>>> */
>>> mode = 0;
>>> #endif
>>>
>>> All seems to point to serious issues had around the time of change to
>>> ums to kms and a serious regression hitting the linux kernel? No?
>>>
>>> Cheers
>>> -Mike
>>>
>>> _______________________________________________
>>> Linuxppc-dev mailing list
>>> Linuxppc-dev@lists.ozlabs.org
>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 6832 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 18:06       ` Mike
@ 2016-02-05 18:08         ` Herminio Hernandez, Jr.
  2016-02-05 19:44           ` Mike
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-02-05 18:08 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 3453 bytes --]

Yeah the issue is with the driOpenDriver function at least that what I
think from what I saw in gdb.

On Fri, Feb 5, 2016 at 12:06 PM, Mike <michael.heltne@gmail.com> wrote:

> True, a permanent patch was needed, but at least we are up and running and
> can identify other issues.. In the thread with the patches it is
> highlighted that the drivers are broken in the first place
>
> On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
> herminio.hernandezjr@gmail.com> wrote:
>
>> I have already applied his patches on my PowerBook running Jessie to get
>> accelerated graphics. However they are only a work around and not a real
>> fix so they will be committed to mesa.
>>
>> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:
>>
>>> Herminio,
>>>
>>> Ok, take a look at this.
>>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on stable
>>> maybe this is more fitting
>>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>>> fixes the issue for r300 on powerpc though.
>>>
>>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>>> herminio.hernandezjr@gmail.com> wrote:
>>>
>>>> I have been experiencing the same thing with my iBook and PowerBook.
>>>>
>>>> Sent from my iPhone
>>>>
>>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>
>>>> Hi.
>>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
>>>> patch from Michel Dànzer, next problem is of course enabling agpmode,
>>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>>> and seems to load the cpu a lot.
>>>>
>>>> Upon initial investigation i could not initially believe agp could be
>>>> this this broken for this long, until i found this.
>>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>>
>>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>>
>>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>>> #ifdef __powerpc__
>>>> /* Disable AGP by default on all PowerPC machines for
>>>> * now -- At least some UniNorth-2 AGP bridges are
>>>> * known to be broken: DMA from the host to the card
>>>> * works just fine, but writeback from the card to the
>>>> * host goes straight to memory untranslated bypassing
>>>> * the GATT somehow, making them quite painful to deal
>>>> * with...
>>>> */
>>>> if (nouveau_agpmode == -1)
>>>> return false;
>>>> #endif
>>>>
>>>>  and now later this:
>>>>
>>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>>> #ifdef __powerpc__
>>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>>> * DMA from the host to the card works just fine, but writeback
>>>> * from the card to the host goes straight to memory
>>>> * untranslated bypassing that GATT somehow, making them quite
>>>> * painful to deal with...
>>>> */
>>>> mode = 0;
>>>> #endif
>>>>
>>>> All seems to point to serious issues had around the time of change to
>>>> ums to kms and a serious regression hitting the linux kernel? No?
>>>>
>>>> Cheers
>>>> -Mike
>>>>
>>>> _______________________________________________
>>>> Linuxppc-dev mailing list
>>>> Linuxppc-dev@lists.ozlabs.org
>>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 7328 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 18:08         ` Herminio Hernandez, Jr.
@ 2016-02-05 19:44           ` Mike
  2016-02-05 19:46             ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-05 19:44 UTC (permalink / raw)
  To: Herminio Hernandez, Jr.
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 3832 bytes --]

Thanks, found this now -
https://www.mail-archive.com/search?l=mesa-dev@lists.freedesktop.org&q=subject:%22%5C%5BMesa%5C-dev%5C%5D+gallium+r300+driver+for+PowerPC%22&o=newest&f=1


On 5 February 2016 at 18:08, Herminio Hernandez, Jr. <
herminio.hernandezjr@gmail.com> wrote:

> Yeah the issue is with the driOpenDriver function at least that what I
> think from what I saw in gdb.
>
> On Fri, Feb 5, 2016 at 12:06 PM, Mike <michael.heltne@gmail.com> wrote:
>
>> True, a permanent patch was needed, but at least we are up and running
>> and can identify other issues.. In the thread with the patches it is
>> highlighted that the drivers are broken in the first place
>>
>> On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
>> herminio.hernandezjr@gmail.com> wrote:
>>
>>> I have already applied his patches on my PowerBook running Jessie to get
>>> accelerated graphics. However they are only a work around and not a real
>>> fix so they will be committed to mesa.
>>>
>>> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:
>>>
>>>> Herminio,
>>>>
>>>> Ok, take a look at this.
>>>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on
>>>> stable maybe this is more fitting
>>>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>>>> fixes the issue for r300 on powerpc though.
>>>>
>>>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>
>>>>> I have been experiencing the same thing with my iBook and PowerBook.
>>>>>
>>>>> Sent from my iPhone
>>>>>
>>>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>>
>>>>> Hi.
>>>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
>>>>> patch from Michel Dànzer, next problem is of course enabling agpmode,
>>>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>>>> and seems to load the cpu a lot.
>>>>>
>>>>> Upon initial investigation i could not initially believe agp could be
>>>>> this this broken for this long, until i found this.
>>>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>>>
>>>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>>>
>>>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>>>> #ifdef __powerpc__
>>>>> /* Disable AGP by default on all PowerPC machines for
>>>>> * now -- At least some UniNorth-2 AGP bridges are
>>>>> * known to be broken: DMA from the host to the card
>>>>> * works just fine, but writeback from the card to the
>>>>> * host goes straight to memory untranslated bypassing
>>>>> * the GATT somehow, making them quite painful to deal
>>>>> * with...
>>>>> */
>>>>> if (nouveau_agpmode == -1)
>>>>> return false;
>>>>> #endif
>>>>>
>>>>>  and now later this:
>>>>>
>>>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>>>> #ifdef __powerpc__
>>>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>>>> * DMA from the host to the card works just fine, but writeback
>>>>> * from the card to the host goes straight to memory
>>>>> * untranslated bypassing that GATT somehow, making them quite
>>>>> * painful to deal with...
>>>>> */
>>>>> mode = 0;
>>>>> #endif
>>>>>
>>>>> All seems to point to serious issues had around the time of change to
>>>>> ums to kms and a serious regression hitting the linux kernel? No?
>>>>>
>>>>> Cheers
>>>>> -Mike
>>>>>
>>>>> _______________________________________________
>>>>> Linuxppc-dev mailing list
>>>>> Linuxppc-dev@lists.ozlabs.org
>>>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>>>
>>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 8127 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 19:44           ` Mike
@ 2016-02-05 19:46             ` Herminio Hernandez, Jr.
  2016-02-05 19:59               ` Mike
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-02-05 19:46 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 4046 bytes --]

Yeah that is the thread I am on

On Fri, Feb 5, 2016 at 1:44 PM, Mike <michael.heltne@gmail.com> wrote:

> Thanks, found this now -
> https://www.mail-archive.com/search?l=mesa-dev@lists.freedesktop.org&q=subject:%22%5C%5BMesa%5C-dev%5C%5D+gallium+r300+driver+for+PowerPC%22&o=newest&f=1
>
>
> On 5 February 2016 at 18:08, Herminio Hernandez, Jr. <
> herminio.hernandezjr@gmail.com> wrote:
>
>> Yeah the issue is with the driOpenDriver function at least that what I
>> think from what I saw in gdb.
>>
>> On Fri, Feb 5, 2016 at 12:06 PM, Mike <michael.heltne@gmail.com> wrote:
>>
>>> True, a permanent patch was needed, but at least we are up and running
>>> and can identify other issues.. In the thread with the patches it is
>>> highlighted that the drivers are broken in the first place
>>>
>>> On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
>>> herminio.hernandezjr@gmail.com> wrote:
>>>
>>>> I have already applied his patches on my PowerBook running Jessie to
>>>> get accelerated graphics. However they are only a work around and not a
>>>> real fix so they will be committed to mesa.
>>>>
>>>> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:
>>>>
>>>>> Herminio,
>>>>>
>>>>> Ok, take a look at this.
>>>>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on
>>>>> stable maybe this is more fitting
>>>>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>>>>> fixes the issue for r300 on powerpc though.
>>>>>
>>>>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>>
>>>>>> I have been experiencing the same thing with my iBook and PowerBook.
>>>>>>
>>>>>> Sent from my iPhone
>>>>>>
>>>>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>>>
>>>>>> Hi.
>>>>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old
>>>>>> 2013 patch from Michel Dànzer, next problem is of course enabling agpmode,
>>>>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>>>>> and seems to load the cpu a lot.
>>>>>>
>>>>>> Upon initial investigation i could not initially believe agp could be
>>>>>> this this broken for this long, until i found this.
>>>>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>>>>
>>>>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>>>>
>>>>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>>>>> #ifdef __powerpc__
>>>>>> /* Disable AGP by default on all PowerPC machines for
>>>>>> * now -- At least some UniNorth-2 AGP bridges are
>>>>>> * known to be broken: DMA from the host to the card
>>>>>> * works just fine, but writeback from the card to the
>>>>>> * host goes straight to memory untranslated bypassing
>>>>>> * the GATT somehow, making them quite painful to deal
>>>>>> * with...
>>>>>> */
>>>>>> if (nouveau_agpmode == -1)
>>>>>> return false;
>>>>>> #endif
>>>>>>
>>>>>>  and now later this:
>>>>>>
>>>>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>>>>> #ifdef __powerpc__
>>>>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>>>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>>>>> * DMA from the host to the card works just fine, but writeback
>>>>>> * from the card to the host goes straight to memory
>>>>>> * untranslated bypassing that GATT somehow, making them quite
>>>>>> * painful to deal with...
>>>>>> */
>>>>>> mode = 0;
>>>>>> #endif
>>>>>>
>>>>>> All seems to point to serious issues had around the time of change to
>>>>>> ums to kms and a serious regression hitting the linux kernel? No?
>>>>>>
>>>>>> Cheers
>>>>>> -Mike
>>>>>>
>>>>>> _______________________________________________
>>>>>> Linuxppc-dev mailing list
>>>>>> Linuxppc-dev@lists.ozlabs.org
>>>>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 8569 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 19:46             ` Herminio Hernandez, Jr.
@ 2016-02-05 19:59               ` Mike
  2016-02-05 20:10                 ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-05 19:59 UTC (permalink / raw)
  To: Herminio Hernandez, Jr.
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 4271 bytes --]

Excellent work!

On 5 February 2016 at 19:46, Herminio Hernandez, Jr. <
herminio.hernandezjr@gmail.com> wrote:

> Yeah that is the thread I am on
>
> On Fri, Feb 5, 2016 at 1:44 PM, Mike <michael.heltne@gmail.com> wrote:
>
>> Thanks, found this now -
>> https://www.mail-archive.com/search?l=mesa-dev@lists.freedesktop.org&q=subject:%22%5C%5BMesa%5C-dev%5C%5D+gallium+r300+driver+for+PowerPC%22&o=newest&f=1
>>
>>
>> On 5 February 2016 at 18:08, Herminio Hernandez, Jr. <
>> herminio.hernandezjr@gmail.com> wrote:
>>
>>> Yeah the issue is with the driOpenDriver function at least that what I
>>> think from what I saw in gdb.
>>>
>>> On Fri, Feb 5, 2016 at 12:06 PM, Mike <michael.heltne@gmail.com> wrote:
>>>
>>>> True, a permanent patch was needed, but at least we are up and running
>>>> and can identify other issues.. In the thread with the patches it is
>>>> highlighted that the drivers are broken in the first place
>>>>
>>>> On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>
>>>>> I have already applied his patches on my PowerBook running Jessie to
>>>>> get accelerated graphics. However they are only a work around and not a
>>>>> real fix so they will be committed to mesa.
>>>>>
>>>>> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com> wrote:
>>>>>
>>>>>> Herminio,
>>>>>>
>>>>>> Ok, take a look at this.
>>>>>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on
>>>>>> stable maybe this is more fitting
>>>>>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>>>>>> fixes the issue for r300 on powerpc though.
>>>>>>
>>>>>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>>>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>>>
>>>>>>> I have been experiencing the same thing with my iBook and PowerBook.
>>>>>>>
>>>>>>> Sent from my iPhone
>>>>>>>
>>>>>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>>>>
>>>>>>> Hi.
>>>>>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old
>>>>>>> 2013 patch from Michel Dànzer, next problem is of course enabling agpmode,
>>>>>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>>>>>> and seems to load the cpu a lot.
>>>>>>>
>>>>>>> Upon initial investigation i could not initially believe agp could
>>>>>>> be this this broken for this long, until i found this.
>>>>>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>>>>>
>>>>>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>>>>>
>>>>>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>>>>>> #ifdef __powerpc__
>>>>>>> /* Disable AGP by default on all PowerPC machines for
>>>>>>> * now -- At least some UniNorth-2 AGP bridges are
>>>>>>> * known to be broken: DMA from the host to the card
>>>>>>> * works just fine, but writeback from the card to the
>>>>>>> * host goes straight to memory untranslated bypassing
>>>>>>> * the GATT somehow, making them quite painful to deal
>>>>>>> * with...
>>>>>>> */
>>>>>>> if (nouveau_agpmode == -1)
>>>>>>> return false;
>>>>>>> #endif
>>>>>>>
>>>>>>>  and now later this:
>>>>>>>
>>>>>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>>>>>> #ifdef __powerpc__
>>>>>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>>>>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>>>>>> * DMA from the host to the card works just fine, but writeback
>>>>>>> * from the card to the host goes straight to memory
>>>>>>> * untranslated bypassing that GATT somehow, making them quite
>>>>>>> * painful to deal with...
>>>>>>> */
>>>>>>> mode = 0;
>>>>>>> #endif
>>>>>>>
>>>>>>> All seems to point to serious issues had around the time of change
>>>>>>> to ums to kms and a serious regression hitting the linux kernel? No?
>>>>>>>
>>>>>>> Cheers
>>>>>>> -Mike
>>>>>>>
>>>>>>> _______________________________________________
>>>>>>> Linuxppc-dev mailing list
>>>>>>> Linuxppc-dev@lists.ozlabs.org
>>>>>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 9009 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 19:59               ` Mike
@ 2016-02-05 20:10                 ` Herminio Hernandez, Jr.
  0 siblings, 0 replies; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-02-05 20:10 UTC (permalink / raw)
  To: Mike; +Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 4536 bytes --]

Excellent work would be me figure out how to fix it :)

On Fri, Feb 5, 2016 at 1:59 PM, Mike <michael.heltne@gmail.com> wrote:

> Excellent work!
>
> On 5 February 2016 at 19:46, Herminio Hernandez, Jr. <
> herminio.hernandezjr@gmail.com> wrote:
>
>> Yeah that is the thread I am on
>>
>> On Fri, Feb 5, 2016 at 1:44 PM, Mike <michael.heltne@gmail.com> wrote:
>>
>>> Thanks, found this now -
>>> https://www.mail-archive.com/search?l=mesa-dev@lists.freedesktop.org&q=subject:%22%5C%5BMesa%5C-dev%5C%5D+gallium+r300+driver+for+PowerPC%22&o=newest&f=1
>>>
>>>
>>> On 5 February 2016 at 18:08, Herminio Hernandez, Jr. <
>>> herminio.hernandezjr@gmail.com> wrote:
>>>
>>>> Yeah the issue is with the driOpenDriver function at least that what I
>>>> think from what I saw in gdb.
>>>>
>>>> On Fri, Feb 5, 2016 at 12:06 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>
>>>>> True, a permanent patch was needed, but at least we are up and running
>>>>> and can identify other issues.. In the thread with the patches it is
>>>>> highlighted that the drivers are broken in the first place
>>>>>
>>>>> On 5 February 2016 at 17:51, Herminio Hernandez, Jr. <
>>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>>
>>>>>> I have already applied his patches on my PowerBook running Jessie to
>>>>>> get accelerated graphics. However they are only a work around and not a
>>>>>> real fix so they will be committed to mesa.
>>>>>>
>>>>>> On Fri, Feb 5, 2016 at 8:44 AM, Mike <michael.heltne@gmail.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Herminio,
>>>>>>>
>>>>>>> Ok, take a look at this.
>>>>>>> https://github.com/threader/mesa-11.1.1-ppc-r300-debian or if on
>>>>>>> stable maybe this is more fitting
>>>>>>> https://github.com/threader/mesa-10.6.3-ppc-r300-debian - this only
>>>>>>> fixes the issue for r300 on powerpc though.
>>>>>>>
>>>>>>> On 5 February 2016 at 14:32, Herminio Hernandez Jr. <
>>>>>>> herminio.hernandezjr@gmail.com> wrote:
>>>>>>>
>>>>>>>> I have been experiencing the same thing with my iBook and
>>>>>>>> PowerBook.
>>>>>>>>
>>>>>>>> Sent from my iPhone
>>>>>>>>
>>>>>>>> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>>>>>>>>
>>>>>>>> Hi.
>>>>>>>> Managed to get the Radeon R300 running on mesa 11.1.1 with an old
>>>>>>>> 2013 patch from Michel Dànzer, next problem is of course enabling agpmode,
>>>>>>>> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
>>>>>>>> and seems to load the cpu a lot.
>>>>>>>>
>>>>>>>> Upon initial investigation i could not initially believe agp could
>>>>>>>> be this this broken for this long, until i found this.
>>>>>>>>  "committed with Ben Skeggs on Feb 26, 2013"
>>>>>>>>
>>>>>>>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>>>>>>>>
>>>>>>>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>>>>>>>> #ifdef __powerpc__
>>>>>>>> /* Disable AGP by default on all PowerPC machines for
>>>>>>>> * now -- At least some UniNorth-2 AGP bridges are
>>>>>>>> * known to be broken: DMA from the host to the card
>>>>>>>> * works just fine, but writeback from the card to the
>>>>>>>> * host goes straight to memory untranslated bypassing
>>>>>>>> * the GATT somehow, making them quite painful to deal
>>>>>>>> * with...
>>>>>>>> */
>>>>>>>> if (nouveau_agpmode == -1)
>>>>>>>> return false;
>>>>>>>> #endif
>>>>>>>>
>>>>>>>>  and now later this:
>>>>>>>>
>>>>>>>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>>>>>>>> #ifdef __powerpc__
>>>>>>>> /* Disable AGP by default on all PowerPC machines for now -- At
>>>>>>>> * least some UniNorth-2 AGP bridges are known to be broken:
>>>>>>>> * DMA from the host to the card works just fine, but writeback
>>>>>>>> * from the card to the host goes straight to memory
>>>>>>>> * untranslated bypassing that GATT somehow, making them quite
>>>>>>>> * painful to deal with...
>>>>>>>> */
>>>>>>>> mode = 0;
>>>>>>>> #endif
>>>>>>>>
>>>>>>>> All seems to point to serious issues had around the time of change
>>>>>>>> to ums to kms and a serious regression hitting the linux kernel? No?
>>>>>>>>
>>>>>>>> Cheers
>>>>>>>> -Mike
>>>>>>>>
>>>>>>>> _______________________________________________
>>>>>>>> Linuxppc-dev mailing list
>>>>>>>> Linuxppc-dev@lists.ozlabs.org
>>>>>>>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>

[-- Attachment #2: Type: text/html, Size: 9458 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05  2:47 PowerPC agpmode issues Mike
  2016-02-05  7:49 ` Denis Kirjanov
  2016-02-05 14:32 ` Herminio Hernandez Jr. 
@ 2016-02-08  9:53 ` Michel Dänzer
  2016-02-08 12:09   ` Mike
  2016-02-08 12:41   ` Boris Reinhard
  2 siblings, 2 replies; 33+ messages in thread
From: Michel Dänzer @ 2016-02-08  9:53 UTC (permalink / raw)
  To: Mike, Pranith Kumar; +Cc: open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

On 05.02.2016 11:47, Mike wrote:
> Hi. 
> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> patch from Michel Dànzer, next problem is of course enabling agpmode,
> running with pci-mode with radeon.agpmode=-1 works, but is of course
> slow, and seems to load the cpu a lot.
> 
> Upon initial investigation i could not initially believe agp could be
> this this broken for this long, until i found this.
>  "committed with Ben Skeggs on Feb 26, 2013"
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for
> * now -- At least some UniNorth-2 AGP bridges are
> * known to be broken: DMA from the host to the card
> * works just fine, but writeback from the card to the
> * host goes straight to memory untranslated bypassing
> * the GATT somehow, making them quite painful to deal
> * with...
> */
> if (nouveau_agpmode == -1)
> return false;
> #endif
>  
>  and now later this: 
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for now -- At
> * least some UniNorth-2 AGP bridges are known to be broken:
> * DMA from the host to the card works just fine, but writeback
> * from the card to the host goes straight to memory
> * untranslated bypassing that GATT somehow, making them quite
> * painful to deal with...
> */
> mode = 0;
> #endif
> 
> All seems to point to serious issues had around the time of change to
> ums to kms and a serious regression hitting the linux kernel? No?

Not really. UMS was just using a static GART mapping, whereas KMS is
dynamically binding pages into the GART as needed. Apparently, older
revisions of UniNorth have trouble with the latter. I think it would
make sense to change radeon.agpmode to default to -1 on powerpc as well.
Any takers?


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-08  9:53 ` Michel Dänzer
@ 2016-02-08 12:09   ` Mike
  2016-02-08 12:41   ` Boris Reinhard
  1 sibling, 0 replies; 33+ messages in thread
From: Mike @ 2016-02-08 12:09 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

[-- Attachment #1: Type: text/plain, Size: 2792 bytes --]

I feel that would alleviate the symptoms and still leave a sick puppy. If
one could work around some of the issues i'd like that solution, it would
certainly make it easier for newcomers. It's a lucky enough situation that
default shipping mesa is broken enough to default to swrast, hardware
acceleration brings on a crash so hard a 5 sec power off is required if
agpmode is active...

On 8 February 2016 at 09:53, Michel Dänzer <michel@daenzer.net> wrote:

> On 05.02.2016 11:47, Mike wrote:
> > Hi.
> > Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> > patch from Michel Dànzer, next problem is of course enabling agpmode,
> > running with pci-mode with radeon.agpmode=-1 works, but is of course
> > slow, and seems to load the cpu a lot.
> >
> > Upon initial investigation i could not initially believe agp could be
> > this this broken for this long, until i found this.
> >  "committed with Ben Skeggs on Feb 26, 2013"
> >
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
> >
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for
> > * now -- At least some UniNorth-2 AGP bridges are
> > * known to be broken: DMA from the host to the card
> > * works just fine, but writeback from the card to the
> > * host goes straight to memory untranslated bypassing
> > * the GATT somehow, making them quite painful to deal
> > * with...
> > */
> > if (nouveau_agpmode == -1)
> > return false;
> > #endif
> >
> >  and now later this:
> >
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for now -- At
> > * least some UniNorth-2 AGP bridges are known to be broken:
> > * DMA from the host to the card works just fine, but writeback
> > * from the card to the host goes straight to memory
> > * untranslated bypassing that GATT somehow, making them quite
> > * painful to deal with...
> > */
> > mode = 0;
> > #endif
> >
> > All seems to point to serious issues had around the time of change to
> > ums to kms and a serious regression hitting the linux kernel? No?
>
> Not really. UMS was just using a static GART mapping, whereas KMS is
> dynamically binding pages into the GART as needed. Apparently, older
> revisions of UniNorth have trouble with the latter. I think it would
> make sense to change radeon.agpmode to default to -1 on powerpc as well.
> Any takers?
>
>
> --
> Earthling Michel Dänzer               |               http://www.amd.com
> Libre software enthusiast             |             Mesa and X developer
>

[-- Attachment #2: Type: text/html, Size: 3913 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-08  9:53 ` Michel Dänzer
  2016-02-08 12:09   ` Mike
@ 2016-02-08 12:41   ` Boris Reinhard
  2016-02-08 13:28     ` Mike
  1 sibling, 1 reply; 33+ messages in thread
From: Boris Reinhard @ 2016-02-08 12:41 UTC (permalink / raw)
  To: Michel Dänzer, Mike, Pranith Kumar
  Cc: Aneesh Kumar K.V, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 2662 bytes --]

Definitely would have made sense for years, but could someone possibly look
into a proper solution?

Michel Dänzer <michel@daenzer.net> schrieb am Mo., 8. Feb. 2016 11:00:

> On 05.02.2016 11:47, Mike wrote:
> > Hi.
> > Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> > patch from Michel Dànzer, next problem is of course enabling agpmode,
> > running with pci-mode with radeon.agpmode=-1 works, but is of course
> > slow, and seems to load the cpu a lot.
> >
> > Upon initial investigation i could not initially believe agp could be
> > this this broken for this long, until i found this.
> >  "committed with Ben Skeggs on Feb 26, 2013"
> >
> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
> >
> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for
> > * now -- At least some UniNorth-2 AGP bridges are
> > * known to be broken: DMA from the host to the card
> > * works just fine, but writeback from the card to the
> > * host goes straight to memory untranslated bypassing
> > * the GATT somehow, making them quite painful to deal
> > * with...
> > */
> > if (nouveau_agpmode == -1)
> > return false;
> > #endif
> >
> >  and now later this:
> >
> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
> > #ifdef __powerpc__
> > /* Disable AGP by default on all PowerPC machines for now -- At
> > * least some UniNorth-2 AGP bridges are known to be broken:
> > * DMA from the host to the card works just fine, but writeback
> > * from the card to the host goes straight to memory
> > * untranslated bypassing that GATT somehow, making them quite
> > * painful to deal with...
> > */
> > mode = 0;
> > #endif
> >
> > All seems to point to serious issues had around the time of change to
> > ums to kms and a serious regression hitting the linux kernel? No?
>
> Not really. UMS was just using a static GART mapping, whereas KMS is
> dynamically binding pages into the GART as needed. Apparently, older
> revisions of UniNorth have trouble with the latter. I think it would
> make sense to change radeon.agpmode to default to -1 on powerpc as well.
> Any takers?
>
>
> --
> Earthling Michel Dänzer               |               http://www.amd.com
> Libre software enthusiast             |             Mesa and X developer
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev

[-- Attachment #2: Type: text/html, Size: 3775 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-08 12:41   ` Boris Reinhard
@ 2016-02-08 13:28     ` Mike
  2016-02-09  1:41       ` Michel Dänzer
  0 siblings, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-08 13:28 UTC (permalink / raw)
  To: Boris Reinhard
  Cc: Michel Dänzer, Pranith Kumar, Aneesh Kumar K.V,
	open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 3438 bytes --]

Certainly 750~800 fps in glxgears vs 3000+ in debian squeeze, i cant bring
myself to say that it's an acceptable situation no matter how tired i am of
the problem knowing how well the setup could do. It's clear that the
implementation is broken for everything but x86, if that's a acceptable
situation to then perhaps a recommendation to use a BSD derived system on
everything other then x86 ought be the recommended not more hacky crippling
workarounds, this is turning into a hackjob resembling the 90's already,
just to get to anything remotely functional. Might as well deprecate the
entire AGP system

On 8 February 2016 at 12:41, Boris Reinhard <reinhard.boris@googlemail.com>
wrote:

> Definitely would have made sense for years, but could someone possibly
> look into a proper solution?
>
> Michel Dänzer <michel@daenzer.net> schrieb am Mo., 8. Feb. 2016 11:00:
>
>> On 05.02.2016 11:47, Mike wrote:
>> > Hi.
>> > Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
>> > patch from Michel Dànzer, next problem is of course enabling agpmode,
>> > running with pci-mode with radeon.agpmode=-1 works, but is of course
>> > slow, and seems to load the cpu a lot.
>> >
>> > Upon initial investigation i could not initially believe agp could be
>> > this this broken for this long, until i found this.
>> >  "committed with Ben Skeggs on Feb 26, 2013"
>> >
>> https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba84d69ba445abc0efcfe3890a
>> >
>> http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouveau_agp.c?v=4.2
>> > #ifdef __powerpc__
>> > /* Disable AGP by default on all PowerPC machines for
>> > * now -- At least some UniNorth-2 AGP bridges are
>> > * known to be broken: DMA from the host to the card
>> > * works just fine, but writeback from the card to the
>> > * host goes straight to memory untranslated bypassing
>> > * the GATT somehow, making them quite painful to deal
>> > * with...
>> > */
>> > if (nouveau_agpmode == -1)
>> > return false;
>> > #endif
>> >
>> >  and now later this:
>> >
>> https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nouveau/nvkm/subdev/pci/agp.c
>> > #ifdef __powerpc__
>> > /* Disable AGP by default on all PowerPC machines for now -- At
>> > * least some UniNorth-2 AGP bridges are known to be broken:
>> > * DMA from the host to the card works just fine, but writeback
>> > * from the card to the host goes straight to memory
>> > * untranslated bypassing that GATT somehow, making them quite
>> > * painful to deal with...
>> > */
>> > mode = 0;
>> > #endif
>> >
>> > All seems to point to serious issues had around the time of change to
>> > ums to kms and a serious regression hitting the linux kernel? No?
>>
>> Not really. UMS was just using a static GART mapping, whereas KMS is
>> dynamically binding pages into the GART as needed. Apparently, older
>> revisions of UniNorth have trouble with the latter. I think it would
>> make sense to change radeon.agpmode to default to -1 on powerpc as well.
>> Any takers?
>>
>>
>> --
>> Earthling Michel Dänzer               |               http://www.amd.com
>> Libre software enthusiast             |             Mesa and X developer
>> _______________________________________________
>> Linuxppc-dev mailing list
>> Linuxppc-dev@lists.ozlabs.org
>> https://lists.ozlabs.org/listinfo/linuxppc-dev
>
>

[-- Attachment #2: Type: text/html, Size: 4892 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-08 13:28     ` Mike
@ 2016-02-09  1:41       ` Michel Dänzer
  2016-02-09  2:27         ` Mike
  0 siblings, 1 reply; 33+ messages in thread
From: Michel Dänzer @ 2016-02-09  1:41 UTC (permalink / raw)
  To: Mike, Boris Reinhard
  Cc: open list:LINUX FOR POWERPC..., Pranith Kumar, Aneesh Kumar K.V

On 08.02.2016 22:28, Mike wrote:
> Certainly 750~800 fps in glxgears vs 3000+ in debian squeeze, i cant
> bring myself to say that it's an acceptable situation no matter how
> tired i am of the problem knowing how well the setup could do. It's
> clear that the implementation is broken for everything but x86, [...]

Why is that? It was working fine on my last-gen PowerBook. AFAIK Darwin
/ OS X never used anything but a static AGP GART mapping though, so it
seems very likely that the issues with older UniNorth revisions are
simply due to the hardware being unable to support the usage patterns of
modern GPU drivers.

That said, if you guys have specific suggestions for a "proper"
solution, nobody's standing in your way.


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-09  1:41       ` Michel Dänzer
@ 2016-02-09  2:27         ` Mike
  2016-02-09 11:52           ` Gerhard Pircher
  0 siblings, 1 reply; 33+ messages in thread
From: Mike @ 2016-02-09  2:27 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Aneesh Kumar K.V, Pranith Kumar, open list:LINUX FOR POWERPC...,
	Boris Reinhard

[-- Attachment #1: Type: text/plain, Size: 2284 bytes --]

Ok, so its quirks to be added then? Something not implemented in KMS that
was in UMS?

Reports are that the same issue exsist on PPC Amiga Ones with a VIA
chipset, and the Pegasos 2 with the Artica s chipset, i posted a mail from
detailiing that.

Sure that might be it, but i get different results trying agpmode=1-2-4, 2
gave a noisy screen before the hard crash. i find it rather impossible to
debug at all as the crash happens so fast no logs seem to be written.. I
think i would need serial...

I'd personally love nothing more then to see support restored and a default
as expected working condition ought be the minimum requirement. I use a
powerbook a1106, 5,6. With a 5,8 on the way. Those are the last two
revision powerbooks in the 15" series. In swrast they become useless,
impossible to use for any productivity. Most people trying to use linux on
ppc for personal use come in macs, with the exception of the Amiga PPC
crowd now running their amcc 440/460ex or e600 based x500/5000, all of
which have of course pci-e more cores and more threads. Yet struggle even
with regressions left and right to keep up with the single core performance
of the G4's. Sure it's pushing 10 years , but it's the only alternative if
one wishes to remain mobile.
On 9 Feb 2016 02:41, "Michel Dänzer" <michel@daenzer.net> wrote:

> On 08.02.2016 22:28, Mike wrote:
> > Certainly 750~800 fps in glxgears vs 3000+ in debian squeeze, i cant
> > bring myself to say that it's an acceptable situation no matter how
> > tired i am of the problem knowing how well the setup could do. It's
> > clear that the implementation is broken for everything but x86, [...]
>
> Why is that? It was working fine on my last-gen PowerBook. AFAIK Darwin
> / OS X never used anything but a static AGP GART mapping though, so it
> seems very likely that the issues with older UniNorth revisions are
> simply due to the hardware being unable to support the usage patterns of
> modern GPU drivers.
>
> That said, if you guys have specific suggestions for a "proper"
> solution, nobody's standing in your way.
>
>
> --
> Earthling Michel Dänzer               |               http://www.amd.com
> Libre software enthusiast             |             Mesa and X developer
>

[-- Attachment #2: Type: text/html, Size: 2750 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-09  2:27         ` Mike
@ 2016-02-09 11:52           ` Gerhard Pircher
  2016-02-09 12:15             ` luigi burdo
  0 siblings, 1 reply; 33+ messages in thread
From: Gerhard Pircher @ 2016-02-09 11:52 UTC (permalink / raw)
  To: Mike
  Cc: "Michel Dänzer",
	Boris Reinhard, Pranith Kumar, open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V

> On 9 Feb 2016 03:27, "Mike" <michael=2Eheltne@gmail=2Ecom> wrote:
> Ok, so its quirks to be added then? Something not implemented in KMS
> that was in UMS?
> Reports are that the same issue exsist on PPC Amiga Ones with a VIA
> chipset, and the Pegasos 2 with the Artica s chipset, i posted a
> mail from detailiing that=2E
Just to avoid some confusion:
Old long story short: the issues for AmigaOnes and the Pegasos _1_ with
ArticiaS northbridge and VIA southbridge are that:
1=2E the AGP controller corrupts data transfers in AGP mode (also dependin=
g
on the AGP HW request queue size)=2E So there is no official AGP driver th=
at
would require radeon=2Eagpmode=3D-1=2E The microA1 is supposed to have a f=
ix
for this HW data corruption, but I yet have to dig out my ArticiaS AGP
driver code for some test runs=2E=2E=2E
2=2E At least the AmigaOne with ArticiaS chip need non-coherent DMA
allocations and/or proper cache flushes to avoid corrupted DMA transfers=
=2E

Nonetheless I had DRI1 working _only_ on my A1SE under Debian Squeeze (i=
=2Ee=2E
glxgears could run on the desktop with hardware acceleration), but DRI2
with its very dynamic GART mapping is a no-go on every first-gen AmigaOne
machine, even if the GART driver test (radeon=2Etest=3D1) runs through in
PCIGART mode (could it be that it uses a more or less static GART mapping
for the test?)=2E

> Sure that might be it, but i get different results trying agpmode=3D1-2-=
4,
> 2 gave a noisy screen before the hard crash=2E i find it rather impossib=
le
> to debug at all as the crash happens so fast no logs seem to be written=
=2E=2E
> I think i would need serial=2E=2E=2E
> I'd personally love nothing more then to see support restored and a
> default as expected working condition ought be the minimum requirement=
=2E
> I use a powerbook a1106, 5,6=2E With a 5,8 on the way=2E Those are the l=
ast
> two revision powerbooks in the 15" series=2E In swrast they become usele=
ss,
> impossible to use for any productivity=2E Most people trying to use linu=
x
> on ppc for personal use come in macs, with the exception of the Amiga PP=
C
> crowd now running their amcc 440/460ex or e600 based x500/5000, all of
> which have of course pci-e more cores and more threads=2E Yet struggle e=
ven
> with regressions left and right to keep up with the single core performa=
nce
> of the G4's=2E Sure it's pushing 10 years , but it's the only alternativ=
e
> if one wishes to remain mobile=2E
swrast definitely isn't fun on 10 years old PPC machines=2E Current Firefo=
x
is already slow enough on these machines=2E=2E=2E :-)

> On 9 Feb 2016 02:41, "Michel D=C3=A4nzer" <michel@daenzer=2Enet> wrote:
> > On 08=2E02=2E2016 22:28, Mike wrote:
> > Certainly 750~800 fps in glxgears vs 3000+ in debian squeeze, i cant
> > bring myself to say that it's an acceptable situation no matter how
> > tired i am of the problem knowing how well the setup could do=2E It's
> > clear that the implementation is broken for everything but x86, [=2E=
=2E=2E]
>=20
> Why is that? It was working fine on my last-gen PowerBook=2E AFAIK Darwi=
n
> / OS X never used anything but a static AGP GART mapping though, so it
> seems very likely that the issues with older UniNorth revisions are
> simply due to the hardware being unable to support the usage patterns of
> modern GPU drivers=2E
>=20
> That said, if you guys have specific suggestions for a "proper"
> solution, nobody's standing in your way=2E
I have to admit that I lack the knowledge of the inner workings of the
TTM/radeon code (and its TTM AGP backend) to do any useful work here=2E
I was hoping that the TMA DMA allocator could be of any help at least for
non-cache coherent machines given that (IIRC) ARM is using it together
with the nuoveau driver on the TEGRA platform, but I guess that would need
some modifications also on the powerpc architecture side (maybe a new
non-coherent DMA allocator that is not limited to 2M virtual address space
for mappings)=2E Thus I guess a lot of things could be improved/fixed, but
nowadays Linux code doesn't seem to be something for the "occasional hobby
hacker"=2E :-)

regards,
Gerhard

^ permalink raw reply	[flat|nested] 33+ messages in thread

* RE: PowerPC agpmode issues
  2016-02-09 11:52           ` Gerhard Pircher
@ 2016-02-09 12:15             ` luigi burdo
  0 siblings, 0 replies; 33+ messages in thread
From: luigi burdo @ 2016-02-09 12:15 UTC (permalink / raw)
  To: Gerhard Pircher, Mike
  Cc: Aneesh Kumar K.V,
	LINUX FOR POWERPC... <linuxppc-dev@lists.ozlabs.org>; 
	Boris Reinhard <reinhard.boris@googlemail.com>;  Pranith
	Kumar  <bobby.prani@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 5235 bytes --]

Mike and Gerhard, dont think the situation of the pcie powerpc is bettrer.but compared with last years with the new kernels and last xorg on a radeonhd 4650 i have an increase of performance about 250x ... example QuakeSpasm was gaving 640x480157fps on Radeon 4650... Now is 380 fps yes compared the old nvida 7800gtx on Osx  450 fps this results are less but for sure better than before.
The worst of last period im facing r600 radeon ring test errors and  i cant usewith gpu accel now only in fbdev the 5450 and 6570 that it was perfect working before.
Luigi

> From: gerhard_pircher@gmx.net
> To: michael.heltne@gmail.com
> Subject: Re: PowerPC agpmode issues
> Date: Tue, 9 Feb 2016 12:52:15 +0100
> CC: aneesh.kumar@linux.vnet.ibm.com; michel@daenzer.net; linuxppc-dev@lists.ozlabs.org; reinhard.boris@googlemail.com; bobby.prani@gmail.com
> 
> > On 9 Feb 2016 03:27, "Mike" <michael.heltne@gmail.com> wrote:
> > Ok, so its quirks to be added then? Something not implemented in KMS
> > that was in UMS?
> > Reports are that the same issue exsist on PPC Amiga Ones with a VIA
> > chipset, and the Pegasos 2 with the Artica s chipset, i posted a
> > mail from detailiing that.
> Just to avoid some confusion:
> Old long story short: the issues for AmigaOnes and the Pegasos _1_ with
> ArticiaS northbridge and VIA southbridge are that:
> 1. the AGP controller corrupts data transfers in AGP mode (also depending
> on the AGP HW request queue size). So there is no official AGP driver that
> would require radeon.agpmode=-1. The microA1 is supposed to have a fix
> for this HW data corruption, but I yet have to dig out my ArticiaS AGP
> driver code for some test runs...
> 2. At least the AmigaOne with ArticiaS chip need non-coherent DMA
> allocations and/or proper cache flushes to avoid corrupted DMA transfers.
> 
> Nonetheless I had DRI1 working _only_ on my A1SE under Debian Squeeze (i.e.
> glxgears could run on the desktop with hardware acceleration), but DRI2
> with its very dynamic GART mapping is a no-go on every first-gen AmigaOne
> machine, even if the GART driver test (radeon.test=1) runs through in
> PCIGART mode (could it be that it uses a more or less static GART mapping
> for the test?).
> 
> > Sure that might be it, but i get different results trying agpmode=1-2-4,
> > 2 gave a noisy screen before the hard crash. i find it rather impossible
> > to debug at all as the crash happens so fast no logs seem to be written..
> > I think i would need serial...
> > I'd personally love nothing more then to see support restored and a
> > default as expected working condition ought be the minimum requirement.
> > I use a powerbook a1106, 5,6. With a 5,8 on the way. Those are the last
> > two revision powerbooks in the 15" series. In swrast they become useless,
> > impossible to use for any productivity. Most people trying to use linux
> > on ppc for personal use come in macs, with the exception of the Amiga PPC
> > crowd now running their amcc 440/460ex or e600 based x500/5000, all of
> > which have of course pci-e more cores and more threads. Yet struggle even
> > with regressions left and right to keep up with the single core performance
> > of the G4's. Sure it's pushing 10 years , but it's the only alternative
> > if one wishes to remain mobile.
> swrast definitely isn't fun on 10 years old PPC machines. Current Firefox
> is already slow enough on these machines... :-)
> 
> > On 9 Feb 2016 02:41, "Michel Dänzer" <michel@daenzer.net> wrote:
> > > On 08.02.2016 22:28, Mike wrote:
> > > Certainly 750~800 fps in glxgears vs 3000+ in debian squeeze, i cant
> > > bring myself to say that it's an acceptable situation no matter how
> > > tired i am of the problem knowing how well the setup could do. It's
> > > clear that the implementation is broken for everything but x86, [...]
> > 
> > Why is that? It was working fine on my last-gen PowerBook. AFAIK Darwin
> > / OS X never used anything but a static AGP GART mapping though, so it
> > seems very likely that the issues with older UniNorth revisions are
> > simply due to the hardware being unable to support the usage patterns of
> > modern GPU drivers.
> > 
> > That said, if you guys have specific suggestions for a "proper"
> > solution, nobody's standing in your way.
> I have to admit that I lack the knowledge of the inner workings of the
> TTM/radeon code (and its TTM AGP backend) to do any useful work here.
> I was hoping that the TMA DMA allocator could be of any help at least for
> non-cache coherent machines given that (IIRC) ARM is using it together
> with the nuoveau driver on the TEGRA platform, but I guess that would need
> some modifications also on the powerpc architecture side (maybe a new
> non-coherent DMA allocator that is not limited to 2M virtual address space
> for mappings). Thus I guess a lot of things could be improved/fixed, but
> nowadays Linux code doesn't seem to be something for the "occasional hobby
> hacker". :-)
> 
> regards,
> Gerhard
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
 		 	   		  

[-- Attachment #2: Type: text/html, Size: 6146 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-02-05 14:32 ` Herminio Hernandez Jr. 
  2016-02-05 14:44   ` Mike
@ 2016-08-25  3:09   ` Mike
  2016-08-25  5:34     ` Mathieu Malaterre
  2016-08-25 10:54     ` Benjamin Herrenschmidt
  1 sibling, 2 replies; 33+ messages in thread
From: Mike @ 2016-08-25  3:09 UTC (permalink / raw)
  To: Herminio Hernandez Jr.
  Cc: Aneesh Kumar K.V, Pranith Kumar, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 2508 bytes --]

Any improvement on your ends? Seems -1 is now the quirk. But does your
trackpads work? Did an update after getting a new and the latest released
powerbook up. Also found an interesting interface which can replace our ide
drives, intended for ipod classics, but it can fit in the bay and has msata
interface.

On 5 Feb 2016 15:32, "Herminio Hernandez Jr." <
herminio.hernandezjr@gmail.com> wrote:

> I have been experiencing the same thing with my iBook and PowerBook.
>
> Sent from my iPhone
>
> On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
>
> Hi.
> Managed to get the Radeon R300 running on mesa 11.1.1 with an old 2013
> patch from Michel Dànzer, next problem is of course enabling agpmode,
> running with pci-mode with radeon.agpmode=-1 works, but is of course slow,
> and seems to load the cpu a lot.
>
> Upon initial investigation i could not initially believe agp could be this
> this broken for this long, until i found this.
>  "committed with Ben Skeggs on Feb 26, 2013"
> https://github.com/DespairFactor/bullhead/commit/
> 650e1203c11354ba84d69ba445abc0efcfe3890a
> http://lxr.free-electrons.com/source/drivers/gpu/drm/
> nouveau/nouveau_agp.c?v=4.2
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for
> * now -- At least some UniNorth-2 AGP bridges are
> * known to be broken: DMA from the host to the card
> * works just fine, but writeback from the card to the
> * host goes straight to memory untranslated bypassing
> * the GATT somehow, making them quite painful to deal
> * with...
> */
> if (nouveau_agpmode == -1)
> return false;
> #endif
>
>  and now later this:
> https://github.com/torvalds/linux/blob/master/drivers/gpu/
> drm/nouveau/nvkm/subdev/pci/agp.c
> #ifdef __powerpc__
> /* Disable AGP by default on all PowerPC machines for now -- At
> * least some UniNorth-2 AGP bridges are known to be broken:
> * DMA from the host to the card works just fine, but writeback
> * from the card to the host goes straight to memory
> * untranslated bypassing that GATT somehow, making them quite
> * painful to deal with...
> */
> mode = 0;
> #endif
>
> All seems to point to serious issues had around the time of change to ums
> to kms and a serious regression hitting the linux kernel? No?
>
> Cheers
> -Mike
>
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev
>
>

[-- Attachment #2: Type: text/html, Size: 5472 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-08-25  3:09   ` Mike
@ 2016-08-25  5:34     ` Mathieu Malaterre
  2016-08-25 10:54     ` Benjamin Herrenschmidt
  1 sibling, 0 replies; 33+ messages in thread
From: Mathieu Malaterre @ 2016-08-25  5:34 UTC (permalink / raw)
  To: Mike
  Cc: Herminio Hernandez Jr.,
	Pranith Kumar, open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V

On Thu, Aug 25, 2016 at 5:09 AM, Mike <michael.heltne@gmail.com> wrote:
> Any improvement on your ends? Seems -1 is now the quirk. But does your
> trackpads work? Did an update after getting a new and the latest released
> powerbook up. Also found an interesting interface which can replace our ide
> drives, intended for ipod classics, but it can fit in the bay and has msata
> interface.

You should subscribe to this bug:

https://bugs.freedesktop.org/show_bug.cgi?id=94757

that's the only possible solution (when it comes out) AFAIK.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-08-25  3:09   ` Mike
  2016-08-25  5:34     ` Mathieu Malaterre
@ 2016-08-25 10:54     ` Benjamin Herrenschmidt
       [not found]       ` <57DF23C4.20508@gmail.com>
  1 sibling, 1 reply; 33+ messages in thread
From: Benjamin Herrenschmidt @ 2016-08-25 10:54 UTC (permalink / raw)
  To: Mike, Herminio Hernandez Jr.
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC..., Aneesh Kumar K.V

On Thu, 2016-08-25 at 05:09 +0200, Mike wrote:
> Any improvement on your ends? Seems -1 is now the quirk. But does
> your trackpads work? Did an update after getting a new and the latest
> released powerbook up. Also found an interesting interface which can
> replace our ide drives, intended for ipod classics, but it can fit in
> the bay and has msata interface.

There are bigger issues with Apple AGP implementation, but yes that's
one of them. Another one is that because it's not cache coherent, AGP
pages shouldn't also be mapped cachable in Linux via the linear
mapping, as the prefetcher could cause cache aliases of them which
would be very bad. Sadly, Linux uses BATs on ppc32 to map the linear
mapping and so we can't unmap selected pages.

So sadly, while slow, I'm afraid PCI mode is the way to go for those
old things.

To revive those old Mac laptops, one of the more interesting to do
would be to port all my old power management code from radeonfb to
radeon KMS so sleep can work again ;-)

> On 5 Feb 2016 15:32, "Herminio Hernandez Jr."
> <herminio.hernandezjr@gmail.com> wrote:
> > I have been experiencing the same thing with my iBook and
> > PowerBook. 
> > 
> > Sent from my iPhone
> > 
> > On Feb 4, 2016, at 8:47 PM, Mike <michael.heltne@gmail.com> wrote:
> > 
> > > Hi. 
> > > Managed to get the Radeon R300 running on mesa 11.1.1 with an old
> > > 2013 patch from Michel Dànzer, next problem is of course enabling
> > > agpmode, running with pci-mode with radeon.agpmode=-1 works, but
> > > is of course slow, and seems to load the cpu a lot.
> > > 
> > > Upon initial investigation i could not initially believe agp
> > > could be this this broken for this long, until i found this.
> > >  "committed with Ben Skeggs on Feb 26, 2013"
> > > https://github.com/DespairFactor/bullhead/commit/650e1203c11354ba
> > > 84d69ba445abc0efcfe3890a
> > > http://lxr.free-electrons.com/source/drivers/gpu/drm/nouveau/nouv
> > > eau_agp.c?v=4.2
> > > #ifdef __powerpc__
> > > 		/* Disable AGP by default on all PowerPC machines for
> > > 		 * now -- At least some UniNorth-2 AGP bridges are
> > > 		 * known to be broken: DMA from the host to the card
> > > 		 * works just fine, but writeback from the card to the
> > > 		 * host goes straight to memory untranslated bypassing
> > > 		 * the GATT somehow, making them quite painful to deal
> > > 		 * with...
> > > 		 */
> > > 		if (nouveau_agpmode == -1)
> > > 			return false;
> > > #endif
> > >  
> > >  and now later this: 
> > > https://github.com/torvalds/linux/blob/master/drivers/gpu/drm/nou
> > > veau/nvkm/subdev/pci/agp.c
> > > #ifdef __powerpc__
> > > 	/* Disable AGP by default on all PowerPC machines for now -- At
> > > 	 * least some UniNorth-2 AGP bridges are known to be broken:
> > > 	 * DMA from the host to the card works just fine, but writeback
> > > 	 * from the card to the host goes straight to memory
> > > 	 * untranslated bypassing that GATT somehow, making them quite
> > > 	 * painful to deal with...
> > > 	 */
> > > 	mode = 0;
> > > #endif
> > > 
> > > All seems to point to serious issues had around the time of
> > > change to ums to kms and a serious regression hitting the linux
> > > kernel? No?
> > > 
> > > Cheers
> > > -Mike
> > > _______________________________________________
> > > Linuxppc-dev mailing list
> > > Linuxppc-dev@lists.ozlabs.org
> > > https://lists.ozlabs.org/listinfo/linuxppc-dev
> > 

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
       [not found]       ` <57DF23C4.20508@gmail.com>
@ 2016-09-19  9:13         ` Herminio Hernandez, Jr.
  2016-09-19 10:38           ` Benjamin Herrenschmidt
  2016-09-19 12:36           ` Mathieu Malaterre
  0 siblings, 2 replies; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-09-19  9:13 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, Mike
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V, debian-powerpc


[-- Attachment #1.1: Type: text/plain, Size: 44921 bytes --]

Apologies for the previous email.

What I was trying to say was I just recently installed Debain on my
PowerMac G5. I upgraded to sid and install the nonfree firmware. After
reboot I noticed that GPU acclleration was broken and I recieved the
following error

[   10.428542] [drm] Loading R300 Microcode
[   10.486631] radeon 0000:f0:10.0: firmware: direct-loading firmware
radeon/R300_cp.bin
[   10.486865] [drm] radeon: ring at 0x0000000000010000
[   10.634417] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
failed (scratch(0x15E4)=0xCAFEDEAD)
[   10.634526] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
working (-22).
[   10.634538] radeon 0000:f0:10.0: failed initializing CP (-22).
[   10.634546] radeon 0000:f0:10.0: Disabling GPU acceleration
[   10.781302] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
timeout, shutting down CP.
[   10.932698] [drm] radeon: cp finalized
[   10.932813] radeon 0000:f0:10.0: (r300_asic_reset:425)
RBBM_STATUS=0x80010140
[   11.432810] radeon 0000:f0:10.0: (r300_asic_reset:444)
RBBM_STATUS=0x80010140
[   11.928815] radeon 0000:f0:10.0: (r300_asic_reset:456)
RBBM_STATUS=0x00000140
[   11.928851] radeon 0000:f0:10.0: GPU reset succeed
[   11.928914] [drm] radeon: cp finalized
[   11.935052] [drm] radeon: ttm finalized
[   11.935061] [drm] Forcing AGP to PCI mode
[   11.935124] radeon 0000:f0:10.0: Invalid PCI ROM header signature:
expecting 0xaa55, got 0x0000
[   12.037448] [drm] Not an x86 BIOS ROM, not using.
[   12.037490] [drm] Using device-tree clock info
[   12.037500] [drm] Generation 2 PCI interface, using max accessible memory
[   12.037515] radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 -
0x00000000BFFFFFFF (64M used)
[   12.037525] radeon 0000:f0:10.0: GTT: 512M 0x0000000090000000 -
0x00000000AFFFFFFF
[   12.037538] [drm] Detected VRAM RAM=256M, BAR=256M
[   12.037544] [drm] RAM width 128bits DDR
[   12.037791] [drm] radeon: 64M of VRAM memory ready
[   12.037798] [drm] radeon: 512M of GTT memory ready.
[   12.037840] [drm] GART: num cpu pages 8192, num gpu pages 131072
[   12.039662] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   12.039690] [drm] PCI GART of 512M enabled (table at 0x0000000062980000).
[   12.039820] radeon 0000:f0:10.0: WB enabled
[   12.039834] radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr
0x0000000090000000 and cpu addr 0xc000000147010000
[   12.039849] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   12.039855] [drm] Driver supports precise vblank timestamp query.
[   12.039902] [drm] radeon: irq initialized.
[   12.040079] [drm] radeon: ring at 0x0000000090010000
[   12.188699] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
failed (scratch(0x15E4)=0xCAFEDEAD)
[   12.188806] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
working (-22).
[   12.188820] radeon 0000:f0:10.0: failed initializing CP (-22).
[   12.188827] radeon 0000:f0:10.0: Disabling GPU acceleration
[   12.335530] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
timeout, shutting down CP.
[   12.335670] [drm] radeon: cp finalized

I noticed the GPU was set to PCI mode however I did not set
radeon.agpmode=-1 in yaboot. I then installed Lubuntu 16.10 along side
Debian. I noticed that GPU was working and it was not set to force PCI
mode. Has there been a change to kernel in Debian to force this by default?
If so it looks like it is breaking on certain G5 machines. I am attaching
bothe dmesg files for review.

Thanks and sorry for the previous garbled email.

Herminio

2016-09-19 1:38 GMT-07:00 Herminio Hernandez <herminio.hernandezjr@gmail.com
>:

> -----BEGIN PGP MESSAGE-----
> Version: GnuPG v2
>
> hQIMA+xo3psPW7yoAQ//b7QMCGTR202VEruyEMuTxTHah3sktcKMG5Hp9rVImOHV
> 39RCHl9uIChtNeY1byKQWRGwrPRB7nRh9uuTFbVYUjra6bUAkvQBCFv+U4Vk9aYv
> Gp9X+lsbmUxeZ4MuQeZ+oTNkP8cpGZ3dfDNf6/InohW3ecH8xrENecp6QN4p3qqh
> xApNL95+VBgpJU9d0LGUyCXnHV+9V343j1SKrkiKGpL4QVK5SXcBWUVVhqCxj/4u
> Ph2H+QbQqHjEW3gndxkxq0Ln/pbpKdw2dL+ag4zSMLQKN2D7sRV9nj/c3hE/4/97
> RvnFPvxLWc49NbMWTmj/ExcHmLZsPz3VDx+HJycKVk7Gu8gILazntGTDh2J+4wOp
> Dgp2tyhPepIfwhR/Thmv1HPcJlBI5wFi4dlxTm/RF5cmzrEZl9wuad6CWjVwoe15
> bEmaaQts4Jp2gJ4/FSbUMbyYZ2+1ExBsr22tEbvyLOi67rvNDfm36GFyXB8nhWJI
> 04M5JX2d30ugTbKmXd91rx6+1b0pPQuDdslsP6s1ftK0iL+LAts34vg64bX0zuZr
> zD5ZApzAJJBP31cyOQQCrvfDFeZqwbEWl8afrQyAoJhr1oKfT075IRoqp/v2M2Nm
> wPWQs89xDYfBFmeqR2KhkurisUHcluSmdB5DftA4UI5YEBoaNixm8yENLrtC7K7S
> 7QENhVvzLWj1CwErFsf4q11R1USUcZHLah2C6E61OJOS8f9vJKkNfcLcQp2XYkaM
> krBbrAZ+i5Ur4MqvVCZ7bmpbYdX4iDeYaZPjB7c0QDfCgLg3638ZiLbltUzJm7VO
> yTF9ybWZfghE9l40UCJmGzj/uyNvHrAV7iob4gQIMi/muT7mnexJeXoPi/ap5YvI
> kI0uSxAeafwhR3NxQGKoCAfUHCWRxfPawfQBfPInAv+Q0MyYYm+YmOm5CafggPVt
> Y4Gzr7EKNV+YdpxcXqR9LvqJV8VkriSKKFfqkfSq801H+VCgmkv1LueCG8JtR8bc
> /r5M+IGaQ3A+UGle9Jj2Ywip5rKcVPk/EDCGysyWolIis4s8tZO/giMVJ8O8mhKV
> Y574C8exFBdibg/VTcmfug3VCDfZ4NILM4Ol2y3GZR7R3M3vHyn53kUV4vEnGXxt
> fPK9S5OCtymvZaYqSsrcDVqUJFmm8LrXjkNO8alqrU2TwtWreKANfEocM9QsCCgd
> p2+6vE3fnPZDrPqn5LmVAuNFmXywC9+OHZgW2HdGukja+reayAND6B5RNMasPrFx
> nJGIbDTY3Pm5Q/PRU0i1PuyvnnYxEwz2mPwoVK+nb+a83wKKBmUFXyT71DELZajZ
> twLvieZJnOCo5aztLLvFvrU7AG+B87vyg0F5gIql6E86h4J19XuKclOh6C4A635E
> pPXG37YgF3g47d00dk+ZBDoTsRzPFixet1vQiTKBBrV1qL/hzpQpKnLOBpvSJvGn
> iBaSP3YMxweTHzvK1+7KD0DvY0Dxun0RrLNWjNIkt6N2e79K0xRmUoz+2KlumSyH
> 5+y9t2plG3yaI+PfJlEH6y7GUj+nIFxzJZlKwXB1GGbF4G9wf7ZrKlGv7trx68fu
> qpEmOo0HSeCtPfhdq9+uKmVQmVJXAI7i+EX1gWgr+Sq+kp1d5o4Ad18fCahZqeRo
> nCflULAZYh15Cyv7924XM2nTGEHku42xsepmwk+c79Bw7K7eG/DuEaUpWAEgU9oO
> e0BQX/iLcEB30q0vFWFz3GVSTJuLRLiJvaKRd/lhSZxfkw5kqIwdOPAMglcvVaXU
> xAoTZdhGCme2xVHDQNLH7CGHr59KKvyYbXC8JzK6OEp8G1fFty7VYZVGK9ncsnlx
> NpXV5gR1JP6s1kMvW9qeQ9BJ95hiW5E6KvNDm/75hWc9he/ma0J61GR7w9Vo4EVF
> 8DEpA6jCfNxSuZQucGOpC6xxtM9dQOHc88UAEYVmQqInIjRActbqvtKF4Nfvi0zV
> dgNpQonvjZc1KiTaW6Np6lgOB18RYu8RHNTlebKvpGMmb8hXAV6hlpSEnNL/IpLO
> yJ/w/hzMdBho1L5E6F25OZlxWCWNoJXvD5R2g295VXGnravolJIPHh47VhREMbI7
> 9n8fo9wnqTKwH5kpTUW0OMRuIYu69qObmDo+s86O/t3CU/0Q1ur4jrhiXKkd+5RX
> OF2u4/yI6f5hbX/qnTc6YKhGFiLf+79EF3Kk0fxZIFNGrvmb38bUk79UJZklFicE
> 7YzIp1XkwhCL2JiwvgixRlqxTAiF4TDYTH7lNDgoEgbBt02p6U6TPZ7vLr8sX/gU
> m3yoAtxtJWEilR5IOZDReIUel8r9YcCraqEiHyQLOihbYwfS/rdEv2hdjWgzQCEe
> u32SrWyvIDyz6L9m7asyJeUBIbNf0CzjRwIpsoBq1/FtgSG+b4ESj0Jo/N2XvnXk
> lw8psoPseKa4LkzbJfYcbSGCH6GU+WPNKt6yy4QgqeYoSLLKr85yYlg9G7YzXk0K
> Jk+C2Avt4QOhqmcKIDlTeFunOayNZI4XRbf0vuNfcV/POI4jkoxR2FjbB7677wp4
> Zk71uo92dUvyT3rKY7Frm5O8Xk9mTSyXQUS8lckChFWTRaliz1Ufb8wqPTSKk20F
> 7S3pEgETF+5s4PZ/ZMTO2X0nJcX1tAllHGHPHDZ2vnTb6oUjgJKs2lGG3MliCgO/
> aonbXeOXuYJH7+DCuqjaeKq5Rf7iaqTqZClc0CzwbAiXaz9EHrLX2X5hKPhUswZ+
> ShNF+E9AETo7Lt/vr57pG3OSY+gmD7u0NlXBhAwbYteE+HnR6DTiy7UHodkFN4u5
> HifSxhD06toxgegLHOt3JxXKQd82Y1IRxRyzdpFi3xjEaNgNIQsxU0I1+WQG7xdV
> Sy681ZUFPD8klw4m8xdPG9giYgNFHyAs8O7CKu2UtAlST1AnuqISoOiE1yeIjwep
> /PX3MNZEsujOr/Cti36yBaeDbEK1UwcT8RKZkii1+sMaIBDJuUxHlUvzA+SWpCVk
> QHVLk2jldym8/rdvk7xTBGd57QNagqNV0qG16i4kVEbMb6U55SNJY0vTdnES0sIK
> m00BLCtCc7A3UYrEgqMv9ViNiOFJdzrOTTwByBqWJl0Vx+cUKy5BxDYAEAWeZ50U
> aywjusBX51zB3OHOXNKladejVSL7vA/3f4ypI/hDuEwV0BaYKJpwk5BFP1MMvDhj
> vT/DW+3ZgDqu9WQBlk9Cv5RI6m/LDuYgC0eoW+ewc8KNxGx9B0jDEemxglds51fE
> K+PHBy4JU445M2Aam56+RA6Gd+9QFU6a10/K9R6WbIDUStqKlNnDPlYAJgeePl1N
> quzoonljJa9+iLTnqlyJvmNz5DBXYewFiDxdtxIoEe8MXXmwLhlDiqUSG5zCZOTB
> m+1cMKtZyOX7SYyA3d12DK3M3JCMAcoBwpzYcIBBMnCu1DUrh+kpAIE7agS2x+Cz
> 37dC2ZSkpkHljgYTURFQaF8LeXC1eoxUwtWmWiH/+BOqZP9Q2SHCY4lNpg4DbvX5
> ix6bhwas8ot+w37tHhBK8B0ibpRTSKPWWA1SCYH0M/aftUAYXo58Hc77ZS98kKbV
> nwFKis1qeRMjljHvFqJxuwsYt3CSuxCkQo/rWPyJoCgN/sMgRqh0+JzmfUA3Q6yB
> XaRYZX4iStujQZzL8SRY0mjy8RtRWx8CeA/QXTSrZq+n6w6He6VvF4/Y4GG8AI1G
> GcUMJhvkBuvBqRNTCnTPwm2BvHJVc61cn3vxMd/juXL0iprDRriIVkxKlSuHKjF+
> 3VInokb/td7OyN03Q/Kbk8hI093K3W6iIEDEngrW9LW70uBZVXIOEVTwZ8WbTIOB
> j5rQlx8eamuZZxBqGAJRqdjCxsVNJlocEaJZw5ppZjF/62yvc//rioyI7gWeJe+5
> YFHMeG1qW/cFJ6F/QiZgMIb6EDREBR3nx+X41FdtTCKdtLxwuCEphIxyMgwIYqgO
> dZwLh0js5UdpDZtqkEQgU80ucy03v2u9ayHvjlRqXKZUisaQrT1siTYGCITaBVag
> 8awwT4bGjU1tl4aSNWeb1HVpqt6M6utxzPXoOd+yleA8NBZamt13XEMtagItJIon
> zVOL7JgeTBCn/KCfWR9Z9q9P1jWt7gD17DOAB3uiNf02cL4Zd0MEJy3b4g4JkL3g
> yvDLY8ytbx5SY+BqpEAxJ9ykQfCWZJvqfyjRprt6O41PiBVdMQZ7kxHVgCAXZw1/
> EQ3OTX4QLZYdkX5o83QvSOwij7SEwzyU0Cm0uWW4ML1+TcM6eTy91ZCKPwXiE8QJ
> CRGLetisNGkJS5Td1ddPj4I1PV3VOkfB+vbvkGpFp445d7ZIldf2e8vED/enhJWA
> mgWW378DgaqmyQOadSt/xOtS/p+UfLQHxwg5wNCdtXtPBPgJo52M4k4l3lSdOrnY
> I8b+3bDUw90p+5FK0ngvqdgN4t3aDqkN8/FzYlVuZaAFqMeOByvgpmWc50XmIeFW
> O4X2M8AqZT+YzJNfRHedDSNQs3/YqQUbsVI6L5sbsKaI942cG+YhVON+EKC05BxJ
> 3IOmtoif5Qhx7XqJTVE4j+C1nSgKtz1X+OS85PlLrnAMKi7aTsvO8X9h+ZVM88CG
> HzGN5xux+bKwCMxkSlvP4eEo3P7pw09ohrb1rC4tTnQqvutVFS+b14WBcbcDAMNt
> WU4UMH+CKDJ17RFQ0Fy+lGXzqUV5+g4hV1ZfhciwnKFfMBxkPbOQWiYoH7p6t1Lb
> sZNAjbNcLlJLA6ZZqbf2HpCO96PRqQIWnM60RrnpWDgXC/X/rUZJdE90pWAD1TcC
> 1d8Lx84qA4nt8N+TibM6oiB5/oTtaHgEwFtMVH7toQXtrJi+X7DA1NRUS5Qdmic+
> 4jAKqAO/XgQrKlOR96fQEZzO9aM5AmxmdPt4lSivGGs/z9Dy6k/3vqpl5kTtr9wu
> v6lA2Z8eloAowVZR9GSh7c1e628mDpv9BX1i6FsQQMSk+1Z+AISjGBZ5ZucSlP1e
> 1mVUfk82TlGUmlIad7BMRxam7V6ZcgbQWtm+gz/M/q/CkVz78DlQ9MCUSI/dJE/C
> h1XH8YPQd9AC42rRxY3dIs0rbGWzY2+PY7KsvWw4WJ/beH9hVQUHhrQ9f9qVfseH
> +ft/OIdzJwqAQZUO45zPF3Uq6DFsRdM3bbAbo4M655mnE6G7u6Yz+VvwlJSynKQ0
> ZlJCSpEk9vbArNQwXI3OZ81RULAnLAU4FlvjR5ma41q4L29ZnslGg8RVuovrtI4q
> oUUkHG51bxolm0OMZyiQhm9LCBbbXIbSfBFPSl8XJZbiqOdn+Fr2OnR2bt6kj1FX
> awoGgXKdRkulyALE2rbCr/UQFvsZmtoOLQbFwNFxi98ID7n09szD/PRWXWqeA3P5
> 8tRJs1MHkSv9f9yKS720WV6pANTHPaXwszRKwBQnCe+isemmOHBPSxeBpeN4hl9A
> IbuDLqZvM/XnaBE5HmKJIxS+Ve+NPnSZXt46TDAUPqsx3cLIKTIUiG1Er1xCYuRo
> Zr5aJ5J/xCuQ+OVSAWI5ALhRCYSHai26ZB6S6Sc7xUbWXKRsnBuIJQ7FwLnDVYu4
> qEPy5bzPHUIXZUxvT+gjP564Sv5lX5l429ndlkd68ng/rSpIf9D0PDepi1/wTJyK
> MQKfUmMLgfMGhZEXtx4EhhstQZ8N/fD2qVICV71vTl0wv28xEJNyYq/HQORXeUSv
> 0aZJYOSnSeIPu55mfiSQ/5sXw3+t9aANvWba5rGawi2Au5vTNxxaKUP2Xc58g4nd
> xnybnNlgWa4qMdaIhTGuRFa9QdNQWR+oaayjw3mQ4BBaq6PdUQNLzcyzI7QFWWLZ
> RObzxbscmzC2zJdND1WQ4BGbx6AEeRg+gqrOpqMEwXdRzKm+ufD4pwtDS0QLBO6J
> 0hUUVsg9h9UHqRHbGwnEzFgazoUiuwatxLRoUd6ADEnVPZQNiEHgsbge42fnZmGd
> oSXKklhzJxe3h0NCCKgcc8+WMvUuOeRmHPHZX9kfU3XCc8Td6wIckGvO5r5PmR1N
> Nu0J3kPF6JWQMCPFFoA8oDlGR7wWgc2+85rfefZOx89k5dejeg1cXsNMPd5go25T
> hvcQaTrypa+Cc4zf5OOUMoavF1Etd9Ya6JUg/I446B3oQA8+BJO+F5CXT5ssRlfk
> 5duejdAYEzVCwcsQtOtp5unZokp+ti86WKdQvzttkUv/eSTuj9YAIu6DY/cBSOVm
> oFx0w08iY8/ip9SLNhxBWucb9X2szo/3apRW2UjY5Tbcgx8qwZWKZ56dLR5QQj6V
> yRfCDuYF8R32EBTLoNRT0CgcWg+GchHy/yF0ZnzZoYQfvvFjnNKNiGzPolY/nSQ3
> koNxHHuUSwNJq6jfvIFfpJzyonW0kOlVVltGivOOPkRRUvqlS6ROMtH/8h+7f+TT
> voG7YpAU9rF73HOcYwgRsqfF5mTtXrIodJ2HE75wWejSXgrPnxoOP7OteJM79/Er
> eSncPdGHFv6sI7t1x3LXDyxy0ucWJ6Pt/OJdNRit+q5EhhKmETM8ldipnT4tO8FD
> UK1MulSE7g05HK9bOSIcCCsfobTiwLn449JGXcPQzmuwSXvNZy40UjEblg6OGgn2
> 8LbosjW3VNfCrshnZowe2+IRbfl+lGN45D86072xd2AA3Vthr2HEokfaieDiR5lY
> +vMRum+ByiiMy9yuDJrZW/hbypP2570j+hTfVtMcWOjt+1A05L8OAzDQnIU75bqS
> quDdefK+PIpniMbs1ClrwKYiKC2JMDo891mCa1WD239jgddq288JY+t5tS44zjvg
> PCrcky1BnX/suG63iPDKguXieTNSIMHSNwKeUqHzfuiDxQwsAkKb3iXeSo0OftqY
> cLUDxBqPQYPqRUGg5k5bXZacv7YRnXQIeGP7WR86FBo/USHEnDnOqKmz2ZRw5+Lf
> zOATV0zNUiJb+HY5RLLvvaAN2AiVkcpPUoBjSg/4qIWIEE4SSKg4V3eL1CZoZcD8
> fRe2MqoTgbV3+9vGaKM0wwrtdV3D2WHZHDJTKvBNtz7wS18HeJhHKh47C4/I1XvO
> EBVbzGJ/0A/3YQZ63HwZA2V+c2bzqvAiQGOb2ceYCDH3GkzCvIYkHwdGRntKbmHd
> /Xios/jNPv3Bs8PrFijhlQ3+/jX5y3cJMRaRd5TR9dTD42ANPzTM7AqGrE/gztXI
> WLwSbMnByKIxPhBtSFurtFbGRZhQRnNxPean++kKMMc3cEGy/6dFTluuOXYFjmWX
> l3W10alsdjHK5UdcO/FEvoSNYnbBJuxeEUo7XpeIM2IUqDWVLqqaC5fL7Taf/Go8
> 6GvxVeTeEMZ6rfoyzgqrcj6BECfeYcI2YM8lipoWcgGkHSB6w/fwC8I0L/80ZlwV
> GcXRBx6L6kiM3iJOtaOO7rmfTcVpGHNQzefsNsj4qokSRRpGyuvbIdRjGtgEw3oT
> k9unWtL7FaeVNDDHZvhsaeNAO0+i7OOb580gb6JB/yEyCECLg0XjRCpU29yJj/b3
> vZMbCrwuSToxrdKSsKTx1+dtDYxjl60rcNmYFpevfn0WzS3irrMrj1hwqDs4gbFn
> X9+sFD/h0y6IBeEJ8IkVKgWt+j8GcccEhsyOkKNvXzsShHN8bEjDqBlCtYPo6aVb
> GlrrN9g2WYhpF0sqgCPS+K0fjf+E8yDcb4EtITvxZXwLnkA9poIGoPZ4Hita5UGG
> 36cQOZ+oUQwTrfXFdqt41Sm+5tcuddSmZYmWLAleYpx+e91yhX9O5DnvuC43osLQ
> se8gNlDzPVPoODCeHlww1zsbk/bLqxnGgZTm3eQIqSJhPAynQt2T1FwXdU3IaLxy
> zKkqJauijyGzmaD/HkRM1+xBTmpWthNVGIWQE70LB3Vqi0VEP2sAP3p9goPg4Cvx
> ziQIDSYXqEPvF8uODOIbuy9S1bMdcbzobMf+gJsdwjrRfLQWazHg1eg4ky9t2flG
> GnIHsfP//b5NB9YjkBQ/7yee/OATjRLWA0+Pnqm/E+o1dakCrT9GjgfbxI2h6/xM
> 8JjLzHakXadBHfi3MICl4D9rt1WiHOiWJR2JvRE39yfOnri4EilkcJ8cG4l7vQd9
> BayDUBCaJRotndlxAVUiQWx5JIhKCnJRDJY1YdotH4dK5LzMIXFUOjHpndS1bVe5
> 1H+4xpxQbz/BtZOrqmakgGFJGlw79626eNWon4NxZoWsKlI5mMkyAcg9oiVSD8vo
> OxXSO1rou1OWr/H01UDLBVhuQLUUAX4ExBeUlB9hrS7ETEvSKh3RJ1sF7pN1UoEE
> VanuaZ+FGfBcqOmOMXnx58VScVLliCRbVocDB10bj7aaYIiQuoThOSPk+wOPxxH2
> Pd4QM4kpHGTJT9BdA3OQeoSz7l5udsq46o9P2hoy3+5IN1DFrFvWHo+IcKJmD9U5
> duHBNmPH+7ZLKH4CBPObap5u5hQ9yTxuDXbz6iRJHCXngxu9oJnfiiWib6fp2Btd
> mral5wy/oF4epUdLJTtxoXQ6ZqDttTUBJMf8wh499rYRfNffPUdCwy4OYibsgy3z
> oL9FtyHuS/4xmqCgooJqmSrGRq9Dq+w/IY/v0L/EiD6iu2DhDghIgl56xtx0oCyD
> ARApFxgxqpQIn36ohVFExYIEnesnTajLGA6RO8TGVNTHQlnUGoK9fLNZWoAqwlXw
> QH6qhX4iFcCJVPcT4cU8oAJn1ftjX6KU31RbPL8zpmebK9U1EKcOGA20SxzDj9zn
> sfuuqtHvHuq/QmJMYxQcMx11LHqD+sU/BZhn095icabFLi7GovpUTg2sBY06DH+Z
> dWzTXM07850YZidmy2eOSt7rHmA14GXI1AhjprqkMJKtA4UoXuYb+sNZP7Zx9b4a
> KZMIyRjRAPlE9fc40PUKw/2DXPAZi9s1iD/4vXbU8p79lansp5XW1sEEBsWU0CW5
> 3vAAIYTQlPO8d2gZekzRnRH+E8nX4hBId4Fu65o1B59Ivm5hqTNzOoAObe8cW8lE
> /9pPM6yqkmp16D6AVWdGfQmnM7fCYy6ll71uPyIACGCgkH828PnRCuPih2xHwJad
> mWKPZnxnrIgk8p20b9hghlbfnCceoZUd+KLolOwVcI3i1qnG/RbH9h5KJXa0v9jl
> vsqfYga1tRb8G1HUEISBFc63pP+1hlqnztaGvemJe4JdIs1qY2EpeQ75lErHzLC8
> V1UyG4qN/TOgUslzLr6OE+IhxkcDfeMdAmpEeuckvOit2k88P2HfnYY4y/YCVzPQ
> lOUAleOtsJcdvkCZetwARAsdJ9Th56AwUvzm61PYzOUbZ8y9wVxZaXnEyFTTK4NF
> Stj4fF2k8PLVBAndB6QFNAtUlEJ/zmx9rE4hJTREa8WVT+ut3VXgVf82qG25QhA9
> AUnIMcE6Io9owW52HBWZ84FQzmoiLYncXMKTrvnOafin5+uL2JOInUCs58Ba20rd
> vqFMm0LlBFXtMWzTKlP2Y3kisVQVUIWi4ag8s7tIKcYTC1f0m0vAsvdDBQxWsL4c
> AT+lpaSyLF00rh0AD6mH7AajQP4W29r/pzYASSc4DFePViFA0pa19pjn5cxW15KY
> Sev9UPtL9Avu37z2WdepiER1zE0VVCy8+TPRdefewVkgOowN0Kl3UugPEGfLkbwP
> XS1D7F1kY5fpZtZelQ69aEY1wX85f4h/Cub8GaZdbYU1+OepIc/iukThHzbCzs58
> ZUAwSefB0X2dO1Onf/cDyCEVPMNdSPX2XtSXMKMFD4K+VoUiwUg/AYXiRx0VAz29
> al2R21AisYyNWEm6DPksxVbHBdobrOzSjQGp5IeWkS0DtvGMZn5591TAy5FKW3JP
> FZmHpiu1rpii65e9eQDj7kp7M8XbAe3f5MWBTTNdU0rXVPYCgTdnOcL91utbQyb0
> dKgr4q3p7IqZuxl4m28MlDd5KHCYKXRSYK9KRdaiJZJt521d8uGlcf4f+MD+SfaF
> hRqlfGulOwcU+5e9+e+nwbAmKxp00yyC5wqDlG7z+sbRvIScQNs7eFnEw9vFQbEa
> +xsdgYU1GUAE962N84Ljop+PiT/d3UgrV3HOnnXzA8q14KPUKNmM0fiFCcTbOqcE
> cGnFSvbh/bQj2+N7jCK55R/8hhClMDXN4CkKyU/lfkQQ4ZBbR56LThn9fI/H6K5Y
> YK7ablenDdOB1xy0yd40dOE0PQ8bFv0hxnSjNDJ664p9eU4Sh5Cch24huJUEvMf/
> pHpXj3bBNnidvdYt3oh/ODyTyrlFRbUhLVEfs43sByeyVdKrlpIXeSL4BM5Bu+0I
> AiqPGe7Wfg7Pk5m5srDAksG9OJXmDNU3qasGO3X/BzEq9VUqnPrTsV3HQCepFoHw
> MKBdmfsEkCDsF2NySiT1VVSZM8M0DS6fr9D8032d1DmCAC11wYOZ8KIMwIEmP8/F
> jHvYhMYTJEnZe7cG8eL+0Jpd2dzT2l7OdJaGaDoYYymkS3UH3LoW5Vn4JDUTb5qt
> oAQoVW4aaNBWsICSiukW23VoUJZb6+it2kpcFPmi9JjQWOXDmldIm2V654eaUzOB
> ERTlos/RITTDteNwv66UTI6TaHWaN+GZCHTeo5TYJ8fpiPnpAbDZxPNNdRy/F43p
> 80zXTNnSBGkPsxrgUNUZ/4Mbv0eIiPLb2r69YQb/JTeccAlVcirv9x7g4Ta4nOXw
> 4nJxV9eui4x54pt24mYF4MxBvqwv+Mv53s1ivxq5/AO5fJllSAJgRDuTXExKAr4y
> 5Ar1fHDTFdRnuIEH9kLf6x6HgrSI4NXPulC2ZSGmFG5tOSmvrb3uWhhZACN3lcqP
> XQ/YNc0gvWkK9xB12n8nkkjDHIeXUpSjs2WkHw1yfH5kubjYRYxXdorSAP85OuT2
> 5G31l/7yVYtOP4h47uVyalChhcyBSHrXa96AK1pPWe8MUAHri6lBW/FAiNOKwNex
> z4z8njD98HRfYv1zUUpmrEOZq1XZjyFDGDgLIgq4JDCIomvm3fvb8YL94UwEJSc7
> kWRZD4ORhZR6y12rjl2kr/3dKtCg+d0CGB+p5ibQm6p9UGkB+T70P8oB9hCbd8Xi
> EMzXCnXiyakz2L4qmjmdKrHdKxZ3zqfcxihn37w2cFBR0A6SGqmy2QS8TEpXRMH6
> JkwmsXTWu5ThqCjHCGVBWVoKaLxAHv4NwKWARvQNmnZDo3kyDeeqK8Vd36fOTyV7
> 1kDd3PXgyO/+9GgiAjJ5BgwxRg7d8Ah43j7zPtSM8veRIdzp+1A+lHGHeHb3Q7SO
> vy3wxwEv+k6qpfAFfUgiLq+s4+swBukoap20r+G7lACcy3xpT2PN6yqdccL4bAdv
> gkpaxn8waIk/FrgWX6pNeDmeaH5qqcwakLeFvyyvuFDNwnXhU7OeWYQtUsceZmeP
> QRyjxKa3VTrpQPD3iZ8AfQ5n+CtJfbsTAbTORp9QIjgCeuH8jB6nqlT0QTtbbxNS
> 4jBqMZ8qXbd4irewS4cp390rwaMssQiggJEgVlokntSLR4hTMfFu9TnaSexR3T3u
> 3wQznmypAVmzIAPjVcqXTF+B9IyHMmKdC2g3ErbRZ66+/RhvGWVAKIZHFSOy7ZhB
> xo+FnoW6UfEkClqUH+Z65JZ/g4traLGUoRelUoJgxKhACeTt2cAh7HW0CtkXs8jQ
> X2pO6qWD7lW38Z2Je7YkCNHY9NrEvrRqvPnKYilnTJqu7ehzh5cuqMYI3Pq5s88r
> 4nTEU+CjXZ1e71oiD3ntU/spw44t3a44SLMVSq3sniQrkIMwB3qXQOcmpdbGGZtE
> UroO5krAB1lywcGQwBImjDS9FoFUQt+4ytsf/7mLpq5HAxOonxq12ZZgpFTZMC3Y
> J0pDjnbVYOPhvQa9IkoYD3vYFBiq8+iSkbQxTMM1b5ahjHdBqw1W18Ncnak5fpKI
> zoCI0C4EvrttYIzDhljhgGwzT/NaRSjNRWAqJD0pJt6tFj1YOtCFBbGPSroKxGXP
> w+tpQ4qqBLm0FEVDbUXe76uE/iDvvvIutKmTYMDn7oDpERrRgx0glN9nH32NEH/n
> tLnGHPOcnA2mNxj0j+xF2WyUWZRqXmBoAeH1MDOWBybRi8wNPwNjBVAXIx8fPm72
> FIHQiWLBepPf2FLTWFdSYh76khnz8Od4rPxaiJHoOTKnoIyjaqeiwMxPPnzcUwIQ
> qXdmHoScUNiKuQLSa8dtYsp3dK85ABjfP54O366S9+aBVPunhDNWHwNKk+ChG/Zy
> nnOkD2guKgCa+SOvry8oTrW6q9cOheeX+Vh3AS5TIN/xMRwRSfjo38M7/0OVZQIa
> JqDzuG1iCUKn5VD+ngYhAKM2sLtQ9WhEPQm7pSm/OKwieKsa1eCZEl/9quIp+dSA
> XPllss5t+R55T+4z3NvPj1iNDxGzjfc77dyon9ktZovLVSrnBtOKcMZmM0kQ4e4k
> Uc3FfIIFFe8oUyjiChyvF/wi0eoXVstX5Cu+DhbJ+txC4yzmYsWKKxSWQv+ajzbk
> 90Xp3zpJEtfCbBsThkXiysadLjwGsN7T+z+Zd2Viw2HVPqJ1pa9nSij85po96vit
> Rj30IJUs9iXyAunxTbcKCXi0PJzWqW2iArN65Y5wDZdDIXBOCBw7/B8S45S/vFQM
> q4UcO6TM5MFtM9sA9R66/TTdqVXl+CBAtuEoFZ0oQSWI/fQPKg+Dqx2fAZHa1Aid
> BNiSPi10rc0krrzjvKfH4IMQuLXpoYsd0b7kFHWLrIFFBTvf/LDHAN48mjLt+1cl
> yihcSV7M9qYpphZaiVXmgKYHcgda2If1lvCJNYfrwY/p9dridAs4QP3dgL0qCsXh
> vQDVv3oUMp1nqUxQuCuQDPmH12MX3KPa6HhNRWkNtVo/ZWwYc9NPq7Sj0enXLlhB
> WhFl60tdlKNeZvWlSBwiCshptOO9Rk/mHBry1LqLUfwimtB5Nr7ybaJmCw0aH+yy
> FJTgImUlRHur5UV2VbHAoC6wzGV5RVN2U+2rFdXZ9JMdtu32RM7kKXjRaflefOL3
> hLbloF+S6nm18BRshsrArPsRG3VyYxLB+q++YJX1n7SyIGFlOhR+4a+e2Jja2APx
> K3/DdadVQDbinPEpCcRONckqt2qRituXCWf5mw0YATsLMR/i5OpE+uKvEdL2bmRA
> b5k+KLiksudRqmHrprzEI2k1j10JFYBo8yi1tWkFcWWFGdQ316Gop0xQJb+Ir/OZ
> xCLGXxwnGJ8ByLD10NGBTomKtNuCxjv1DIDZH3L+hBa/5Te6x+amlZaVJOa/nBVX
> 05SmnLY4Z3e3864T8lVvf9swtprTHufyYvubY59CLPTOuHv457b8ZFhvdYPOM6gS
> Kg+BKIY+l7lzp7kVqLHyuHNnN/K9Tp2VOHWPwO5ptG3ULSMfy/PvQSaVj89dZAJ2
> AHqePCJePwuOFYBLBSCzuoKGgNcD1BjQc2gDZ2SFS31h3sPV0PM6PoAq9Z8C3gNY
> AMzT6z8OZ9R5wQDFxqTI6gEzjEQ2MVaDh8X2GaUcl1SO/1nIEoer6tbuv8BGWEnV
> sb0Pw/p6JsVswn6boi/YcHeD7His24B8u8P+CKEU5cicSeZgbMu1N5vh5retM8yi
> VfIwl+FZ7HcxUVFZI2w26jhLSnIrf/8eN2wVOoGsMzm92IZWBfyLQrBo1/OXWTpG
> INUQUjd592rZ/ESoW17pWIl2G/NeeoualT3yBxhTcTn7ywWzAdNpiqZfZF38XINw
> ZoAUY3f7R5uR8IrN1/auf8m9lUia/bx/nP5PZr8Qxz5aljCnwa64RyCRGSntf68s
> /KsUz6FsJtWDc9dvNm5j5iZvgQJoR6amph9AC+7ebisz2+3O+uS2pku+Uueavhti
> v4+4JwtH8gLbU7LJ51e0qqrXRjN7n7IazuZklw93BMlrGxRR+zL7TzBwGo7mQ+h2
> swFOejgvN0iQC83EtVByNPlRMONVWTs7jIPUvfFfi7J1Fkvir0YfgftLil2Hfy4+
> ZIuFqzp9Cd0hI0/17y54mqe0t2JG5xC5MLdbO5WOueVR5iuJtW9gDgF8z2zRZXZs
> RUdDAHff8qKfacjRglntHhMVAZelWKtrVBzCrGA//zhb0Q53eIalj/W42sXE3L2Y
> UObZH137gxquDJsjiYB6ffCKlSfmkOXr7Cjk9+poUZvN/yChbXSH83R9ydjOrc5S
> XQq8cefDuDkr5mCPAvdhsRv7X/l+y52Yye54JW9kqQBi8fxSxcpDIpHcKMvfOGAK
> Nr9VJn/Jb0JsyxZQyZFbnV+qmxE5d1NfwMquvcH6aB62u2tiPEg+rR+Kq5byzVE9
> OA6RSO2heVe8zW1znzEwSHvr+a5bqWuGQXIApEcmaO+mCnPWCq5mMpDQhDfcY4bR
> b980c89mUDRErb+cARsj2iSdqNJzWP17aD8G/8xf7fIoKs76BolCiglRbxSDeJvm
> lb5c6jj4/5BBj1VmtzFco3sNBwfpqIaGvSvXo7yJU3AUlPeqtVfUCASNy0gnjjc5
> 56g81ORWgQeGWtJkDWZRd1d0oAD49Gx0HFytq6uCzttOyDnY6MBhRq3GyMCguuT6
> WHRda83FX/GLVCGIBYZDAL6/vPG8brrLO62IZEvwNpMplh1e+jJxPFXNOaZy10T/
> pNNkgkn/V+fDoU56Vl93ZRActy1Yll30vBhoLhRx6ydy4G1AEUrES09350lWH5Vg
> VMbQn473JQYNTmiJ4k/w0BcBBznbybNfpdfVfLO706RL3Bqqdc/JOH9lkKKb9PWk
> UPRXtGbpmiGRy3RKXg1lOW259K1qkPsI3uhpbzPSfDOoVX3sySqCvI7P+m71kAEg
> L5HSm/2dI16B9x+ZlhmOuCYp2oUbdM36iSlkdhGM0kRkLEVT1oIYab1QPGYvBSAM
> aHwFvvaAVmhkxIz2zFGXFpAnuSh8l+iyT2lIIbx6XhVmezl/vtDbxUKp9XJUxylY
> Y30fZRyKTEl9OOz2+eMwsleftbpePnh5Bh+ZvjAKia1AJC+28MNNXKmEIuDtVLY5
> V3riNKz8RPeGWlASRzPOp5KePmUmvpU4KeMBHmpXeqLDhtOBmVFulvroIDCszrCL
> 8LpaJCU2dSgGyNd6JU7JEUtbokbd2JX0pUIYZHRvg1ObPUYya86bk8j5QUU10Ni1
> puHwjdSGzzK9KTy9YNY6onKAL9ToRHpqSLkJMeEGxwWSY/GWY+Tv8xyQu2fglLwm
> RNu+KlfrGtAzl1PdKmmlN7q/6+Ee5Sf/kKrb4sTgAzF3druCcHwpClUr+SqoXovf
> meuStFUwb8PqXxSJi/26QrTZjzy4JSwxVHHzrGrRfA8tX9b+jKdPmyvuiGaLvNd9
> CFaWduBsac52jXMqND3GbpCVVhm6cdIz30dsegaoOVMRD5dGcH6PUKXjmjAbgwcc
> TUodre86zSnKqKQTY8ULy0GIasbx21dsOxcExXOuzP+TQAzOs0nUtoOsj7COXZiJ
> gidZYWGfSTfBj37iHQKTrDefnw47zJpffgtyC5wlkDgK2N/VEnXqeztig0Tww48+
> OyqjxKrMOp4/I6uNwVqiRdBpTcT+H/hP2ZQpOo1N4cGm+GknmeQGEeP1zygfKuz9
> qZZwFejp98N07nX7PJbrl0gu5quTd06qhJsKIwBlAPtPE4mJ2nfyTKhCUuDdbiRQ
> X+JX79zdV8KhEuIXv9+N6yvzHAEWbjbkTDxGaXjaKq1ebzUen6fDQ9X5MO64vrbQ
> QGZaMRh7+8CT9oXCyNlolBjn08oS8mxHilOOjlBTtzVUw/b+IwpJqolALUxwpfg9
> rQ60i5dCvURrtgR4OrX0W1rY9EdREDH6haovuJhcm8/B9VB6LAr2koiKZtp2yG3C
> wPJuOdo7wucaqoWfFqZhsqa2vtJ+fT+amxSfLHy7QDDyI98glPQ3W9wCovvHlavn
> J54Vk8ViHbikJJSf874uRocor/8WFqrhjzUAconSxsTn+8O6eHclr7TtFowoIXen
> JJjbdkR8RXWh6i1/lL7FtSG+uwBy1UZ/VjfB6sATe+p8B5ajzYhXf29pnbCDjU45
> UnHIQ9pmcN8zC1NpeJkxaP23udSYYefcFEKF6mjQi9Fk9x66/5OlFjWrMMGIF9NH
> QRLyeqkLJ/xaIULE0lkAnI58Ow1cvC9eJUrRNjzQMOqDp3DJEoa5YVx6C93v/moL
> jJpreew6Z/W0mqzEubp0Sh3fOZEmfL9gEI99WMVsSUZjfPQSCd3a+TUCUlX1CzCV
> zpHSNQ2QEmmHHRwtfz2QUo7ZaDseOotknK1i2Uc9JPVQSwWLZPOC/eBLQc0HqsJK
> 48LeDn/NGtX7JgXGg7XFUVpTSmBnw39u32M+TsVteW7RHwuDCcuR0ObBCDDO98ah
> j3yZB23gR91fa+ght+6c5pQyOhkEkASVsaVdc7sqDjJKgktzxXOtedc7htB7UFx2
> zrRw7xzGA3fqg/oRAEVJGCZ0XUUAZUh/cxfkOFYHDz4A+ze9dSapIuAvGsRQVHPf
> l0D1mXL/ChbPKjgmuWA5k/oXUp/xee3ReT8OwNHLQUfM7d0LerCgEGFR6s/dt+HI
> IBFgmCUo7YxIEaKmIvZzNWE5UX1tay5J3QWfEP1A/quR+rI2TX38/cqzcKBoB/8x
> 4rtJQPeLUothTtB0qlFxfReNR36TxYPKCN2anZgDeSrmwp5RvFh5i6FILkbWGwzQ
> YhJXuA4F85yddZUPYF3uRMo1WB+gjiNrLGm417hKyD+Ntql8eSzilpO9OBg29K6D
> e11c7Nsd7FqU3yhJ9+sJNaBPtGWK8Xuzxv7wvs3/xy+uH/1/wfOGND14bDrCEPKZ
> p4Zwt2nb+G90ga6Hv1i4+P8U34lYq9AvcTrHPvEPQVH0JbMx+G/UV9rCHZ5/Lyml
> nGcSB/gNRE/BLwqbFyHVPi5X/HpS2qFWaR7vTa0lk+pqBPJVKLoVIpFZgGq8TyuC
> stDE4WmEokWyzuVabn0iZ1tPuQCRN137gl92PqddK0eYCUPdMe+An/Eb2MdwLXf9
> a4fuIiKG7YdT/ijSBWfPBoZW1JUXI9+IJabzpTUpP8YPh7JH4DrKhBvmqLrbfzKn
> E0JsW80lSZOIOA/gx8YaiFIlGJoYKbALt9K3C2ms7bksSnYIZnwQKUw6piUjaV3u
> MErzC4ZpUe4pGer9BO01rANrfetEoxe8J4gRiElI5eifGXCXhaenHgn/8DjmFgxT
> bAVPBfAOfhHORiq2pPhJ3vycMZWxajHQqWmSz8HqXI0q/CyqHWH5zC5MdnFJwOiA
> //VeIiRSUsVBStpoA8WIrSnTR0TsxYTNmm6l5lGu9lmT9qVsM0N5MhzqKVJ+vUcx
> EmYdrFGxlngC/fJWmbZL1nhMcdJiiaBwuglRfRvxhCTkRdVrCSItCMBipXCfnFCv
> 0uIdrus3Bo3mqCdBtP3A4faJqPedTk1VQms1ACT1r32IwSzN4nViH3dgcNJDDbyi
> H5V3OE2rqwTSzFS8GTwTHcBFcCQlWNwGWETKNWIYPClJP1jTsA9Yc8NdoJZoqD5u
> aIQ0JdQEY49Ug77z82YqDE+RJm2TDCtg9THgymbcqWWF7rvc5BBCc5smzYF9cPwg
> vIhUpOHczov5zGZP+2y6Me6RNZWQP0/lpqq1WGbVekMBlXksa6c4odzqBe3NFjrB
> pSIcSubx3co6Nb4g2Ze9cNZP/GJuB7cbDnGhaObb2MSDa7BjftTkCyGnJwS4GLcE
> zJT7ly0CiS5SVymrTtM6S45Qq+Oihf/++jHsVNdHfc7Ej8WSWaoAHWRbsChbYG+k
> 0ouSoxchyd8kslT5M5rPCYuH2do3++gJItEozDe3GYxO6Q7IKUkZCnfsmDm6QETd
> m+8rHlFFtmzKQDEZL8iHIDCgnavX/ZJSCZT6J1oxdW/ZPFtfowEjJP7ko4qORv3Q
> wS9wUfRVJahRKn3E/8MdgQgIczIOuT/xEeUk/GhI40HDkKZ3xMBTthUSTPWBNrv9
> n/htXoHs45FdnU7hRf3pOCv+gs8EThnLdCscwVm2zgnFKGQiy+GLOj1tdyI+n5Og
> Q8nYIao0MhBJyyZ8mAnYIHKtmEIE5oqGhxGZ5UlCzfcWPaEoG1FUpuQsvVX4j43m
> OoxHbe5u95ZTjN91EIfSbmU5w+Jy+BsBaHUWEiwuW0uLw/wScUMNaTzMJc6ddMjW
> s08nNtEKBqBze8XD7izigIzwHOZgvjbNWZ2OnZPhnVz4hPmB1H3xDWmBiBQc+O6b
> RTw5me8vIgQ1mSgxhK86CYIS6FYDSOo1eEUcQJ8U8ayiAHka/st7tqbeF7bmueuH
> A1xcxx59xsWYIQesFl0liYUi2NS4fYPw9vyGnQCiwR+5Jiso87IkQMH8u8pnsuQ0
> QnhUKqfYW3UYYPuARpj2YK1UCfnyY6haLnROLZLg9eHugFq4RhN+3IkJzKIxkCpP
> Trg7HhZ2sj98GOvh6EYRdN3B5QOc7dowERi6/ZLHmvGVqvxBYrpljb369rEGQ9g+
> vfDw667pYA/sn4Muz9SPunCSuhfTKO7lXNFX7e3MMekGgFYPzpOfXkjDxJucW1mN
> 2HX/2Itxzb3d481kOwpRghPo0eHnhekRUbMHMLNlbOmB7p0vWuK+Rn/ZSJNJwtKv
> tRm5lZB7SSYzueYvqvFPbJj+0K/QuBQoHnoDLjt8hqfo+N+J840DSst/+qY3O0bu
> dfhVPo1Nh6fjs0Z+MlIdknYRbtEWxfLC2MEg8GWxIbcPWNvEDATbWgeqHCGyIVgb
> TkiXdv9RY/pjCUWWg9Tl+i0Ib166hb1OLBsBrJrGeTqCKwyXahNWnyZa3dh66z/g
> KRUmRYySTPYx5Qf7WQKT9obru8nGtdhNqU3WDxi0cKmXaXVXVXOksPtM9udv97Z+
> cLACDIY+Wf5b5ss7hODFLCsqORTIIqoXhQ1ZiT8fVBbVmdE6f0Ef+U+s9UM8iz7g
> Z4yI/uAkF/hAHrlYaGn0w7ow8cGn83Z1Mx8WhRvQWG5YaXde8ilPXUsvg/KSDt7m
> XGezb8S4bwnmUwyqABaKjMPssDwkO7z/LXo/IS1XKpcZFyRiacSLw+LUCcMQGmU5
> SJrTAfJ0nyYSOYK1lUusYCfnkNSTfAMRFwwB3iHY1w6iR92UzFv4VQ6V/ktGt36A
> 5VxLCkf8V6F3L7KHlG4fjr5MLR5JuZU1qHqalpG5851tg2jbgPjY5Zg7VGStOzQm
> gT0doL4TrYo1gj4maVux9wjjVvRpi3ZNFWnkJZwB12xSUETY9+XI7OWqa0WzhTVW
> 2OkQa+XuithNbDbHj8mkbnUvW2USDEsH1HG5b2+scJsBb0WUPcBQFIFm/guTgcs3
> OBIXNzRK9HJN6amf/k18ilawQSqDIX7Lm51hKoFgcv3JDZb3O3kDYfbN6yihQRCn
> RLQhApaHP56Ftof2yuoVIaXhEqkLscadKAbrVb/+65gc9fZXzOYGy/WiEf4COLLg
> 5VHwgPNIDgbZI7JL/g1ChvI8sGnFgfQ/9qlAg1McdFZ9jB3gzaJ4yuqC/H7ORnyV
> Sg60IG3p+s4XlvArbXeRK8nXyoYtT0vtdc7ZoPuYgGFRSn4VdIZj10L811560FeM
> oig4luajqZdVGD1wQaNzoyymTWzfTdKNcdAMZEwPz801tGwLZBjVoIw5hB9CtDX9
> V5Hqw+rzuSBq9hFx5u+Mxy9mrL5HIlZYxr/mYZq1ueqhRClkFDfxsXL2mhAuGIGU
> h4yxj5c29m9pax9ZBSuOX1Vaz3Mruv6xGB/CvTLOm4mXN93u27yjMvY79F723EvO
> mQInBThWRgV8uy1tUnUEnvPApxiFiLgy1gKW776rj54euTKZ3F1lH1gACqliFIBZ
> lS/63kRvU8Grw6BEqk9vpwQotPgQXUuFFFnuzOBWzpAp28Uxh11ilb6lEu2cGCRh
> Zks5cyh7DEt8DJSpSvcDAM67rAhYP8K9EM3bR9DCaT45Y7Pgsudx5scynrIbgh09
> 0cSE+EP2KKjPyIXl02AVmy6Qe7C2+0MDBF85H3qGzgwRoL54GX5p6VSMi690vBQo
> dQHzTF9nBCUrDQvfj+fOR6oiKQU29MBvC9hwgCASEvEqVgzC2ianl/tryKbAZKfl
> 8WjTgO7kGvBxZsDthbwsz5okmQjMUbxwZ6oKDP33qTd7x42ZjFY9yX6RwcOtt3Xr
> EJ+K3rHsJtlJm6ryqf9WyEtvY8DDjQ2w57BO3/kqOx3fKveXAHBa2sOoFdq76MVS
> WJjSur2xQKFLWBLemhStmu0vToHN/X5b5ur0VsRBmls2N0m2S3YpP0DKTzXNGTHk
> 6hOl+5DAGR2SfSA9ylSXQUqnANv+3fubETmas188rD2s7XczVHL+aRuSB3P5ovxH
> ImJKqpWZRM19+JCHjd8ftyJbX82gcZ795KO0eC/o/nLRmMOm5u9xrfsKiCOkLquU
> gYLoWx7UTtYxv6tNSOSKWoxHWlyNG5wnaY/rYB9r19RucLUXeB2FVZkI8dtlexIF
> gh7RCh51vNwzRDb3/jtUBG6qzixGq0VPlVjWzq0Ixiw/arFPEsnTs2E9Lz45TtHm
> WANiXUEa71G7n4khaLbiT7Ra7GCZ1xrv/s1ddGGF4Sy+bx2eB38f5sUzTcBShHRR
> wIbjiHjUSrL+JGAolzzVtfEO/56c91Xyp40oCpgMkchv9vTgeIl4yA9zUJ3Nvv2Z
> KWm158Jq4GCn+WNgEG6laoWWlT9FipNVJZZJc/+g3KglH5r/bJ7X4Cm8ySnzy89p
> PCKLcBKDAVcFeqfYak7/bNF8mei29KB60ARE3NSIFUc+UNlQ1dpm+bou4grMjIVv
> n74zN58ijGaabUXPSTRSkFB7UcsmajGwd/mbC12S0+m2V4ML2Y3HakAuGD3Q7ZSv
> CTmc2IOEiyNiS67913ETGQvAqU8yOTWN7ealMU9BhjPJ+f3kInKsqJ2ohxqrnAK2
> Lqw7a63chXC0/jLykEmJWsC/8stPrd7Cb8/lMyMU4W1j2RU1rPvlwuU7dMXH9wq1
> mXrLMUkApjO+pO8/cBuvDdn5leJseom/mx4cmG9xCnilLPIyJ8dRoO0GXS3X2PX0
> kWQf44jTU2QPUMZx9QljaC5Vx5zX0RDVOSHcu+ZIzo0xNJZL/ySiwHQEirTsdSnc
> fkOnutlb8immtCcXIiuaZM9e8NZzRJRiVU7Fm+lvIzX63yS3cuDgcdfBbcyuUZX2
> TdUSQoXkYZuonYjwE4g/ggEQj/wk9xsrzVUN+G2RLFbsaEdrkip7nDxHKBf8hwQv
> CGblt72EtdnSW6twJX7meXKglWyMgGp8jna+jRNfGBTDCIB42cSr5WuG2P/ImRYc
> 8O8c62xaX+E78cEUsSc3CrLrd5FQOSWEgf+8hunvy8/A3MWt+LAV446FzAieFiUH
> 4ZU9EroUlES/mASIeuGLoQkM+yFM01hlnbV5maHIeFsmdqUQL9Hnmvz+eWPrSbns
> V5xP92APyyUdUSTNkxR3xgB86rp3+HsudkNgoie/+HXi0wc6IBgurQ2DRjA94O83
> F+Q+ieSngVdwH95Xs2LZgHrXzxp3PNvqPxYRTlXZtYX+SXenaHr3uKHo0u+iqZ4t
> OHLunPGJ00cKicWeCb1XXn8aGG+3saR3ZlooZPvQ0qhCS/w1GQhCNuXbroJeh8HJ
> pZfOxC+FJOqE3dN6s83vOiCKerdFQdBILypsYLN6m8Nk/qbXQCd3YpXq0ewo5je3
> Coq/hnt69acy4NUGbSwwqN7IukK/c06Vf5MRE2oLMOiKV9ftQRPlSKpLBnRjrJtv
> rUAZFzF/Yr40T9IC/MwaORtuhxF4vQDOC9pppKbV6N775LEjy2DAs4grIPzdif+r
> sW+nBNYHmGpHFK/wWkgwvrO1pAk9O2A4r2EirnCv32a9Sj2j1rQgAWyI/dcp1TP4
> Qte/cXkpgKLFdAeM/vr3RwYg2d/r9aKSavDfjmS5PbDvwskRc6SkDDonIxbTwfFN
> vDm+yCUPKG+EXQs/+mjNOrrK2X7ggHq9a/VRhlZtbzIbHX015zfYkIVYIcQlFFSh
> ciSJ+dxr65JyyOfeZUKZcKz0lPU1+v3mXRRHW3nuWXWQmpM74XnXxWMJDip7Fupy
> ALczWYqzOxiIWIBAE/4KIZOCydagVYBqfJuiwd/euhoXkmc2EULCujbd5iVmU32Y
> tF6Ug+x36i/aPxmOj98MkDTpzY6vMhTUQApyG7xp+BGLKk8q3xnlQSpXuVRxoQhi
> +4StZsVKVRjemyljD9SIy2EkbiN7UIH6kar0a+Hbfm/VBBQdeoTzl624jXxOHlXf
> QxjjqoTlVCcv/cdbDLdRfNQE8i4ArqQ5+Le+afODvGFKwPBDk9dWAXH2XuEh9oE/
> DUHpYzNFoNYleVnvkvr1l54i4wUAH+MzhBxegADUAv0LEZSFz/AIzcen/QEQwQXh
> CLHghIp8PadOLFbPedm4VvRUlZlirkaWpk/cINDJ0IEdZUDTfV6HgC1lWTPlGaFa
> Egqx0sYNDZX1jU1wpAsHKjlUcszLttSTsvet96kD1KOEqscBhQ+KEpPCXZ8exA4O
> I7oxfmwbII8/O/HIBw6ydl3AaiZHqESGgBjORcdgLg9Rdol4Sx8FV23yciT72eot
> qrIZfa05uHUKASt0KKQ33SXdnrIXpYCs0J06LzMiD2lU7nSn+pUe/uuPjj0cLfVs
> RaFXfefyxaUZ38qu1M1OQdeO7VmadvNb2dlUSjS6Ws5l049EE1gtsg0YjNl/LasB
> lSvX+4eSeYSomf4sd1N9EB40fX3+fsSG63VAL9TCka3+AGdGDWRvJihfZmh/DKd3
> OACY31QDjwpfHo8OS4/DHlacN6jfXROfBRYWgE7HAETlzVwzbzvG0EuX0dMZcGYb
> NPuP6OMXaP7jVXuhcGT7NtO3MhKSWYVeYu0UwanWVgZOI51NcTSl3BeeYidllYl5
> gOpCes4wgLgUL1k/uQnNqROoUzkdDhCZg057P+TwruwZnwD+ghoCtobWwjEFNFI8
> YGvzQjQoXyfCzZ5w5DPsORup5nIqYm0+KOq7n/F97y6Q8FkB3XDxrfOuSkar/X9C
> bCClo1/oi5XWbrz1UbfypyDZqRwA8m6+ZDu1td0zLK7OnR3puUH2qXTLysGj2/0v
> 4dUgIDoL6p3wlHffufMXnHWFlfsbIoCVggdKE+C3Lhoxwj2Ds4T4uZ/7Mq8RJkN8
> 2Q25iElyyE4QHb4OAZAffEsi+juL/kWaCjFiYzsgck6291+SV6eIhf8v3nG8EZ+M
> fcol+oXnVlZPtqOSGNTCbac9APhxYdiDcD3rvsDK0xkr5tnR3Y6gVTRrlYmw2CMa
> Z7vjREtLWzz3IwXOF4xQYGb70UVrg7n1e6t9PJg3/8MMLCNIdgfhOzokye/hIXrs
> goY/PUk5XCCcpX8A8ucXZooOtsLkIApzyqShmtLpII98bRh0PVHrZFQEkiQHviUu
> mt/wE5xbM2eOvNm2ajI/brs5WCcoves0Qj41ijRwKCPliWUUnNC1gw0upZIrhMbY
> DbjbRK7/mneew3LsTghd51N7Sbg32xUF5D2yQesVRlWs4152MbC3noblrURCuShE
> y0j+kYawmne61Cpm5CRGAqR7t8fpENH7WZNICRbrxnkKOgbdmU57FtKXiob2c2Qh
> H5QTp8cQJf66B5iYqgh/nKt3r8EVU7UG+skR5zqYy0wBxMbQ3LsHFSYEeP+3UCzI
> JWUUHogTwBA0TUnL39dfPx/Ia+jv0DP4/3T5E/E/dw32SGxOga9RLb0LzYg717Jz
> HJ7xrlw5FVdqdr0jk14oy1BmNgKdY0ORalrVDe1Dc/XlRaN6K8ww+FEaxe8S/wYT
> 78BWpLbvLIqF7e7rbFD5cCmZ6slnk35BdSIG7xZFjpf7K+eezz4HaLkYvrlqwvM6
> zcVmVrvA0TK4ho9yCzukWLC0G+RkJa38qLYUgVYLKx7DQ/9yMgpkxbv70ZEQ0OFA
> PfKDH84tQahhvL5em/mQRDDqkuGF/mHaunuNsbv3c15UzcLuiCsP0Chjj0TJ8VmL
> kz9oEMYKk/LwL28GoD3kpcPbqPimtHpDD/expNMeypoXuME3sAKmiKZHyUKp7A2L
> 3M4d1KlkNxmCsUE6knNJb8Lmmhs8Q0D1QJuEe1COH3d0fmcLb14RvW5lrjEmu5TB
> EMPBzZfdmp5VfMgDp1SUO97kIS3vl5+y5nsvcuHLKKC2cwRm6vQzR0245QGBpS4x
> WIiYbC229dvn6Zydi/7hq8Qn+JK8c0csLOmTY1qsCOk79J7unlXiJeDTcI9in7FJ
> dIlvjyez9pulh8YyBQQuqYAUBxRR1pKxv8/lQI72YBkUjWdUlx3vbx5oF1dt9piH
> Dmk9pP6DGTbNA0P0FnT/TpnY1UiVoBI6HWKILxukeMjeR7MMZmbvcDp/6xSGyGEE
> mEhFIbwwHPL+qBRBG8LVbOYkWLzHuVq/DbfA1M0wsx21MeTl03w71QttxGEBDXlu
> JVpcVSsTnVh0/FJCxEetJU1gJpRdbIHZ0PcHieXq2R21XIGwS7DpzQvkcC5bXVM6
> bPFOIVCtOq4V70r4xzFLTWVgsBhuS+hnNOjipwo0eAbxGO8kyi7dT+DY8PuqSTMj
> VG9bHcKGh5nzTwDq/ofxiJhjGPluxAmS5u/m+E2VizHj5soUldTQbQBCLEkXAywr
> L9IuunxTliIYBeoluYEmoxsfIRRHBPrLA/mBfDa7c3FS1tfhxOqMrBxaDWX+MC/9
> 2vT87cKYt8iV3Ne11iWILv69bYGFWWI5dFBCrONUiQbrZb1nVT2o3eaPrCrufJuD
> bRiGpQdFmbDvHTsW0vG/5tXsJCjoURPHrfav92BfYT22LXX7oyUdWVKdHV/zNjCT
> TNK5okE6NG7i4jrgybpqJJo3tOPs6T6MEXqaI58soIPnIjhxs10v0dOiRJama08N
> X8bUBsOLGBNj18TAsj4oBDZHaQ1unPrO05smZFFBD3aoH4DCy6G6qTm9I9+xcV0h
> qAw7raPR8QhiDOqPEmsYrp+L0mJPL09BTXeev7HLJjLlspum1xHzepw+468fWgMT
> FEGYunhoJLC5eu2kBXQri/OiLo5OkEUiK9hRrL8jdyJoeSbz7/T9f+5mDA29U0ju
> dJFq6wKRphPsiDgDfYKPccdHMrrTgVklmirRhMOBOTj7NgSCdKknYgWvxSSVWPw+
> MU/LGOw+zOMsVff1oJ9ulVQUcDVyTKVxvCPr9ja9oJ+8/Kf4w50ptmHEeGg61iG1
> ZGBj9SoXgo0DHIg2/zcdgLyoziiVi+MjFGe0YlXvc+bHxNTMuSah5WmOwQSWqKPx
> GFyDLiGOcOfxHaRyPIso3FdzncyKz3/vwXne8LWmeFmWJhur+MpTu9TxZ/h4FGN/
> xTvePtJVF4wycay4qXjc5znX1UTgmfvcaWe4radtgbpajnD5LTxjc4nhmFDC8oUO
> 2ghEr5au6t6V1dpGTE2wqih0+sGITovkKIUQaN1AjNWyKpMBvsd/z2kOou1agZr+
> dpHHWZ0thcOoCFyZRnakHOwxR2KRHqm3uaVAA65l5u9Z1/OKqRnPWAA1ejvxdnep
> 4vHeYRPIQ0AMUf6HVybev9j+1hOBPSzfejNKhScddjynIcjy2H2tURXykRgqr39O
> ZdLoxpc+SqOCCVzQEkp+bNqKkJNDfJJCHUuzjIClF4pQQixki9CEZm61SiReowy2
> wvfPm/a4k2sYmrtVmNYCijgwH1hlReToMD31v5FUj9zx6KmVPduGU44uatA6OqPV
> izkuM0ypQAkvXFYoEfAdoXpwp8R8HmJw30TQ/ZqrcNG51Cg+R+k69MuW4fbHUwro
> oipFZob5U61ovpBM1cPnJ1p+2c74hlTQRNdY45APVes5Z6WEoiiZBye4MnREv6Ma
> jFyWI2mjFCwliP6AumaARVe3vUsaXYanT3XMEExWkwJbDDhF+K5QaDiied7xHXgH
> VL/NEs8nelYEGkxLbochvzzPMSzKNFamluXowvvdDfzxkPx463N0oJi2HRVyM2jf
> PD/QAFszRxoz5OQeDBrgJJqAKagthuBZnSlyqFkd0WffSz/4JMl6bxAIy1MRxbv+
> ca+PgPRoLeNSZ/1LtY+7OVzbQnVY4HA+KQTUwlvIvWjymZ2jPnOKMq4kQ460OKXl
> kD+329RJrlYb89uZ4771Sbi7yn27x7dWmtnUqx+HLolxCotAIr3fcCDr16x53dLp
> LExEbQ09luyyVGpvS9WKz0bUO/Gtcda8Qam23y62qyt3Wtj8JTgPzaK/uTQzJdyU
> A3SwkThIgpMRj843qNzaE2zYddrIGIUg1iMaCMwTMqC+t4n79ZWp3fBiQjHtPvYr
> thj2okPwTXKcFa+RpWR/jeL170F9Vaxp0h5iMPcwQtUgAFN3oHz9AJccr+kWOP6+
> 0k8p06BrEA4TZBCVDPlSs0q+cVGlD5DZ5oLaxIrCpDWz93BaPetwu3+6kOb6UlD1
> B0H5qJsGdltdgqwR9Rx+kz5RgNOWIdTXXVSlrrGi/lM5Z899HZWo5FrZwhLvkKCE
> 1F9kFAFxFQEef6Y39NtQuuxVz8wMtTwLYCvCyFdIG268BzUGMoth/w3BbKmyM0T0
> mmmDMu4pFRlLVIOlmL/1lkR4zdJcn2mD9PBz+eOmqdEYS5SmESkL0hVW1tztfeEC
> +anbbXFBtrzzl289vzXLiTEBH0jJwZM4KKfX7dBTYxeTnnp+w0kwUC8XLD4OfP1W
> oUzhopkuvRllwWcvNrUxvSoIbPzIWhPDAtgBv4nD0njh/aiMdhi8XSl+TibIF38t
> xOwsjzfN3xc9IH1eMPiX6j/cNYjjztjfLuIaucCMM3X5uFo5uUhRvUhXTwOaf4wy
> x7qV41hCxYoPlwOYYqgCxKT8cXuqWyONmFh2ozqHw9w5l6tWaHVrGOaSE01kIwKF
> ORIgVlaPXePklABrzcNThXMmTlV/RuMlK2sV3ufZgVA1Wf0IeMC5TIs+Q3QrpDNU
> Z3d4vOAB2QBjocdi0VENuZF6+1wNE+pSPryJllr3mNXIoMolWUomyXykQvuBGzzi
> 5xiYoVNbZGjRSqPAtmubNN9C1Yhuzr5sx8O5HbFzOxVct/2rOXI4T4L/xBPNhBHE
> OKzF3QthYgHwr44uJ6TCBkO2814HF4F/LLMCvSonsPtFy3jh1wkASY/f2fIOWcO7
> emMP5LcK/meI7nJ+2kNoPjtKWjOgiRE2y+G043NK3AmSSo6O0ERgn4s5dVbYpR2D
> JMpEMC8f2Y3jQDY1bEI6wCkETVQFoYx62l5T5VP1ZqHsvpTjrYgZ0wF4mueYrTh5
> nsIjy2qRQsuLW/hraAYsTkZ5m/mosUlOREpsT8M0x0Jh8TCbAkwqFvKZNKQMNXWn
> aKDTAzHw6qUW+GJAIwW1VwxNiE4/KqzgrZtHpsZYPRB3/qxYDorBRhuWZhiJHWrK
> BbuhVmhh6TUKgZN6PDaZE659LV8YCN1nN/O7YRXPGppGFwd1ON+wqRwwDHMQYUZH
> tRAX2QOV2nCbDnKssv1bBQqOFhMUiJ4qvMEIqx5L5pjlldkN1vmnupu4r/NeS03+
> 8HvFpG4fOi8M258LSgRJjjTw/Avp/sIS+LysI3LNR6r67jT9cyW30AYYmZdQidIk
> 90umNuZYzlKBxNrQOXvUBoQbUqqIH0P5o114nBGRe/44vDPkAnFK1PVBdV7lJyQ+
> YRx2Wkyal0OUnvZbkEukbShnxSaKeBCpKJhfUds2tuMupy4euseslvfqD/h1+3Tk
> 3exiOd/n8rAMhwwNERtjdar/38Q4+a7H/hmBGfzwspzK7wMf+JdVFaMf2gkqmhmg
> 5cu2LeE4zTBI+n70zUbq6sq8rLsp5BcHoL1ff8WaoLnItz+TPvv8Z0URAe3eidSV
> n/VYXoo5mbTdRWyZdsX6zde1BUkdQVBC6ES6x4HcFosEY8KHF57GdHU+3d37qRpt
> M9Bm1rL/mGgn+6La9fU4fhFbEvF9HNlrMm6tjj/OHlPylaa3RJ3zv3gphsVPeEkS
> a3UT+1Oo47TeBIEa6XHAXWdpivVjdABtyNCN3HoFu/GQfsOWixMQyL+XGoDixNqt
> C3HJQ03osY1gs2JMRziaIMjwJFBvDjFRIKGNlo7RRGmEGX5zgv7JRkqsTupOs7b5
> H9S6aTr2CEoSX89hZJh8hHJK3u7P0X0KcMh1kKnrHKcQP5rkbcZlV8jr5nftMdgg
> 2b/EBcc0WL4fJ/63KP690S7iWplhIMFuxLbVhQeNgqfqJ7OG27/RR0i5Pe9FI5bM
> i7LPaOOHLFQIgZ7EGOoq7dQFve4OgqGE3cbKnp/u/6n0em9I6LCFGC91ZKij9BPl
> X5r/t/IppkjNGh84dtPEc0OR3saEwjOzwNl2odG0yv8pBXyaWpGlFMupUlGi8Gip
> GycKPIHeNy4dMGA9rg8BCdiNGK0culRdWAReJwWbIv+A3QcYYEZx3mM3XORNDVoB
> AtuS2vKCmTV+M+kIxJq37W5Xv3TcSjCCgOFHvGpglVvUIKb7Yl0RTd/5CUdCf1qw
> NSRnPJttdHQY63kgr42sWLMNbDzV1GwAQHSSlqjvuXp5DHzfkQdfnAkMlfKhJk+O
> sONoP35k4WqNWvVcxQj6XGJ5aT6bcsDm+rrz6HZtlohhyKcaXCcdDsbrC88p/u8x
> OVEOkssNPQ7SdO/NU7IYRFVtTfN+OdC0eoGgnV5Z5Ef6m2k3cdh1ftNc1tSaBD/p
> QCXd/ca1iUbKpc7EU5MrgNy/H2IyRqiA4xwxAmvUk4aP72jwcdfgZi0ND8K9ulOG
> 41VoWKKli/LFXA69cb9WJiF6K8dJ34RXPNOku8u7urm3b6y5ePKrR8QzQ16suV7T
> GUPxRFB7VLf9fuIhFmoeeQ3cgoYRE0q/1fTv1Vx60UUgQOc0xyU2OZ3exB+eN0UQ
> oX/lI5ds+Tc2NIQciFB2yCYUW5h9BG4evkM7o/XyBhAMFKur4dpAbzfXJs9vAGNm
> 4o4zJJTdfjsSkvnTKFv/bqzUQRgXxcrbVkyNeoVtqjdmXX7YVZ/NCoz0n3x0p2zp
> mLkycLC+1vu02dyCSnKdw99C/qwTElnMd+Ac1Sxio+qCUIntN19AzGlArCsVFdBG
> TFkq+zNe9v3V40r4xuQ3APdq+LsM2fs/WJgssouNxmYPTb6vx1kfYZXVkPoVl/d7
> RF2d7QH7ud3nqiAr9nGHV9v9yCUpbvbOpkB9aIAuVLK1MaaEGwN8G78/h2ltLFc5
> hif/MrB9gKcnEkNuV0/DkZ1W8TNOGlHA1vhEJ0dLsNDAEb1jm2Rldg0U7DYFuWta
> BZOl3fm2Td6oYHnIccAMth0qv85ROTFTp18FkKaTRoOeMi8PmjAnenmrMYnTLRJA
> 6pOWGRmroYFe9LlckrBpQvGDmCzHTlhcb2FA2Af6O941NSfYdL05bhK79zlk8VGn
> 1yGEb792FleXAv2gyZWCfim24By7FE3qWL6ybcxLw7ZlrRVbffKda+t+SlVcEtdY
> 0/RJp4gZZcw8wBtPtL4PI856TKy+m4eOhu8875RUWNzbW1/KqNQ7/EuF0kOe2ran
> /za6hPtWjFaWQZ2UIybsrfnypdL2jtCjafWXE8X85OiNpI66EFZiVr0mXzxafRgL
> NTSWhGRhHCzYk0WGTCRlY7c8b56aoyF6o4OM2skz1/SBzFusf+/66Pj/4b4krAKC
> v6tZo2RRXaIYwtTcFxXG85PvACnfxTq3J3jQCMcd+uPmJJ+D3Nt+HngQKJ6s1rwN
> nscSiZCQ9VVO8IV9jasy6xpH4ofhGe4jlfgPAHS3Sy68OAGnFRNrQgzqKrHzWIp7
> ZBVvHJjK/XdYrhQ54+qCsM9jVdRi5CVL2OnL9wwqc/2T0LOYu49beaXnp05aPc2j
> gro+YkAy38CJUruWX3DXv5AsgBJbaPMU+a0EtdxrmiR+h15xpDsQLA3ZJuNdIJe2
> bv0dtkUD0BwIYr5dbLsdgYFUH7eH7xQX23K0tWDuhbCRCTuJZye0bOuNfBguLhwI
> Pv1DhlftYwhr/DFXVkoWfwg3whgWE1gDSIEjACL5D52pGzPLmV2qMMagmzq6/j5b
> 4Z49mxqELIxAUwWbe7136BxZa65JUFfTGdohOow7zLXr1nXofa54fC1fyxYbHXah
> Zbcd+NiL5NXDyIudLp+LZ1qu8ivqnLQF4aH35smZuVzWSpJEGPn3Iz4Af4o0f0B+
> BLF4Q6PYYk9sUI+fWCuFxrg8++bvQTYzvBO+Xh6eoe0m9en02Zy90qrr9GumuEzy
> 0FcOj24UudOKFyMtQm5aUzvmist0W6YycWRk74ouQbKVmqoUNl9rfYSEvhq+J5Ws
> JgHSYLosLUROCFVqCRUtXVJESAdhD97ZJq/pJ+9DypppXJ2psEvS12Jh6zrdvbbp
> aRunkDXUgrfJyA7F5hIDiC5NjKaTqfUw/ouSJbIuPdFYRwSQkjgx7FxtNO8iF7gH
> QUmMxcfF8g29RqPPzLifKYdJIxL69Q8aI6srGC2VJ7l4lh6XtkdMPINckm+zttRR
> N2yvKw+z0Pmp0lqSWTyOsUgqqwXX7jo9HG84PaWiRraD8p1uAgWSYvDjTPCYa3Nm
> 7z17yl3904rcJ59jlqsBscCySpBp7eWRqMNDYs+oRGDO8U7Ny9PQ3qOY+qGyGoDw
> 35w3QZPj7HiHR4IACtsX0ckH/Fx4Q7yUX8CUL1KFavXcDaK+OyPHHJjy5R8e6HbR
> 4n5N3iHVtXMJdNGtIkLN3nnwZaPBDox7rLNA8KcXxO1Z16X9I54RSJpoPYmdAep4
> laFq2l3QBjiQnGpMHK0kIFZ19LOMOkqJlFTdJgHAQCHj7nUogNdM5miAVatIPxUq
> h7GQwWkaRMTBNx0NJFcnSp8RiLZ67PjXx/LJe5ZjanNWgIi65NiXJiHRCycskvhm
> ENl9HyeYn1iiU38VFvoitae0PQhpynrTmdrE6+rIsE128iS6rUV5x/yKSeX/oCeG
> JkyVh3b8j1GVxeTmB+1fj5gSA0/Tzz9x0NmEcGpMNmpryn8Sig93HLqHy6Lpdycl
> /C4CpiXO7nK7oMSiN49fiGTFYzuk+zFu7oNjTMCesLsrtyb93Zgu4zJXjSDqlwgf
> 1DJ6cWGJ1u1ecWtzCJFG5xSN33AZftiixjqJCDPqyLR6DvejWpaxgNmeW9SPdAqV
> PzSf+dAouf5IkzrCo9edIvvLBVNC7YfxURrBXLUYBU1nZf3WeA5X6w3Tx7Kz2Zct
> jm1IwQx1WGo4RnOyuQW/xvNGPlBs/jpLePfx1N8JfsR7Z8UBOe5tuAXnBAfgLfqK
> YZbXgEhJWSknCxWDuGvLglVRpk2YWQyzm5gkid85gr3GXf8+F4s0bGaAsXjVYPi1
> hon11v0FKD7rvg+qkeQ8rXvPUJlZll8+fLNd2uCbMdEg8iow2CTk4roYjZ3dTGvq
> bryj+ONIb9sz6xbi7qavxyzpRiP8oFeOG3TlpC1IsP9ooGId3zWkXlb06sJORjUT
> o7MR1+2vlWR5FxElw4fIEsKX/jc0HEs3Ez+laTxOdqqic9S1Eyiyj+xsFbGgM4N/
> h1Uchozy8L/KPTDFIbyhIxHCuhuvYu5Y4MSfQrSbQqeKulN+9Ugb8066XQn/11hb
> +F+bRZZfvCxsTZWohWzSRcC9is3HHuYTT44hozUS7g+ZynebDIK4PCqtlIIF8kaQ
> fN5znBlDpTPeP9SRodNs7lE7X1HLfwGE3tEn4ZGngS+IKw+096KGvHi+fugL0mYz
> rOiu+wG7i806jcNvLfLz4KCQMr67VG+U1rb+y+L9Uef3oQmgmZSbzg/2X2t5ZU4n
> 1TQjyb4FhU6OkW2SHdt+4m6RXcOWRr2ez96K4/cXn01sXm6LKHGzaqfzb4GtbW8r
> ghusmAU/u47Mq+rT0LiigCnnNvoHZRTTN8XdgK8RVoDEfYkzW5DHGgObuxI/afzG
> mfpfvSVh44nI9FVkL+YcCQxJq8QY1RE5H8W2tzTTmnZV9p+qOArZ+08jgNuSZiy9
> M1BlZTlT+w4NVb7bRiN9eQPIlKComNvsSyKi0jIwCgihu0G9xl68GGVxRxFhGJVt
> uszW8ZdYk1uavi7sLA1ffuWeJ+rZdJRNQY1Dw6jkPdCDjGfGcuEAxosxXfQ/3sa+
> 0zJIv1pDSOCH5cWOpde5hvGXNDGevbvhHl/tpZHQKLoUMgSPzFNwx7PXAyr+K1W3
> bHY7r+qza6fKQ8vUJqHUF/7h3rPMd6kTNzkb/36v5irmokW5r78JqRRHodZ5tAtu
> rsTri9RqU0SVsvS+EcHIwMNGuNvzikj6qjuUoPz/h9QWJfoSjzjHHJrigPgd9vAb
> kbvfnzN8ukqJEMcGohUZsacnxfEcfcWixeKWPjOeOEp5iQrrtItNZGGl9dmjL6gr
> d2/KZRaO/1uB9HkuQ2UBqCtYyt13B9DuyHeXu2g5ntB7Bogk7ZwlGqDpv5iAiItg
> sWSVIRrXCzOjNjFt0XM1tS1E5t4ZcWL59/2YRoLvuSfrBKkZlVQcE+Tv5urL7Egv
> IwXTJo8CAS2HjwoDclFzq4RQbw5qvfrT+MDcVPRPIp1daSeHB9AMSHkRDDdKzv7F
> Q6+ceHDy/3/8rgASiGaW+xkUb0RAftMtbdByFFvDzQw+KQC2T+NEnuDZxcBJACsn
> 0c+N5TT8OupMz3tXhxq4bS4yOEgLnqtLyHYLsS82qucvG0TfJQVvox/sU6galVIz
> t0UheCLZyXSpj0skQtyNFIaH4Ksrp8a5EqhzJChoYHWTwK0G/qU9pl+5AMMtpWC+
> ZjgExJIGcYyLiPuL/DqBJyObQSkBFigN9zVWpxTZbnHhD86VI5PIxPHUZlzu08Q7
> WOlkGHz2O8XgE5Z9LeYbrGs4bJ/GMQKpcZdG0RVLQ2xQ8JUJK3L3B8iQ1JqGPPZg
> aFei1csgeawzR4ugn+hAUbIfTcGfJB+yOCYwnv/KML//mvXFhEOQUiVWZ+v+zCKN
> SdAiI478WZWJpDvQjYU0oQYl7h84g7lhsafSkd7UmDDoHbonFnSONVBH1x7jfTCz
> Ly/tEvJkry1+kZ4f6WJvxbWT/RVB0tD1klsUMYROpr76smjYGUkpk8OxuK41mmzj
> 3/t7s9gF9mySOO7NFjgH8nFmuYTdekg5DSqeJd/H0cPoidBKnTW63B7GlaTr3jmx
> feER+wdU7RNX1rRirfmXotDqAg7Wx3yOPdhvX5jRmNm17U3PkNWUQ6Ty5tz9sSi7
> F8N7GuvFPD7I3tuJpVMOHfCEli4HDS9wYAG5dJxQ8x4iFSmCLDb2oQQ3QEoTiDEF
> uMYi5Z1uWpeDIZx/T1tOR7HqeAAzV18IvKAAug3D+B7Zqcd1bF3ZlmeQ0oZ2OZHR
> vhoyeogDfsXuwBJM5VzJKIfdD2XKcU38Swj1SStE8wOkWDRoBtsQkk022nJT1sFe
> 6puOWv8gFBT04/4JOqBV9OhBYGmqXareNcyiKVmmaCKbNvzO9BAm/AqpPeVBTLzw
> WTQP0Wv7tr+wDS+N4jT7kaL1a6gjSr879ftBSV5W59IniK2QNCLVlVLdtiuARLDt
> tV3/Yqqu/6H1JAdtB70kkMKrK5vLfsxjNwUycMu/A6FOmGwPV6w3TmtPivF4U56A
> RhFR1vvaEH10y0jwNR/EaqZlOJZuGkExVqUzkjoefD6+29jrHdii0iwrKMbFT7M9
> gizq7KQzYfJLl1mMvDKnuEVPKblXhGEXgS5348+LLveS1Fj/YNXt3jqy9Zn9KcO2
> QTv5bUMRKrmSgDrCBGKMgF+eTLlaACwNaZkvgBokLYQXxhyiPER6+y93UOHpEJGj
> lyJIvgn0xOadQCOdNLXMLmZmeOGa9kQ3ssCAQIpAtUzNz15Z46bwgxCR989r445V
> G7Mv6ZjvPpwTzmWDlRPFbJYvhIIGOppBZsAsROo9XFZUuaM3VXL0FJ/eNVIhFbNr
> 9zK0oIXmp+pi+LZUt7yJ7TbfrlLIuWz0Gje6wATs/1riR19cl/kqsXo0hr8xR/Wk
> xft6jdZvxxhT1iHfMu4dM7G482ZoGM9xo3g1bPZtllp9jCnT9rURcN4Bg4lUYNG0
> xiYzV3BUptCx3VcA0jwl1AXCTvLdCswrKjysW9AlIUC4jhRsbaXr4btnqHEmWHK+
> gJLx33cN5LRf6nO9bE9fIxSdhWCnkY9r48sXeUi0gOb3QrWL7gJZxGpB0OJ0QrVD
> glgVAYcaZG1fT8b1lu1Z3AYckXeCGX0nAacY6GCOtgHfW4Qh3nar7P6qzcGOl4o+
> h1aOOmNOgS8b6gaZ90DVWs880bcAW5K8fCC2Ojau4iUcQhqhJ+2a3OusiCUEYubV
> 460n2L4s5jFMpzR7NbSguwa2VGCZPLdVUmfoWmmsOsJuZ5uklgQAmGTn4wrBR5lg
> ceYYvsVqeuux8qKm0OWESzeQjMF70rt+sNU40KOpCvIiZ7sa0aFQxw6FQ97r5R+h
> DveRPSo/+qKgSgAn2rCu/Xka5wzpV1Z7+UsYgtRoA4Vyk99ox4OnN+Ft3frbxpaH
> 2FKv5ZoRQOoTg/Y7M2axCD1X5HDtyWrndFO7nMyO1ZCsjUCoSR44si7VklXreaRB
> xcWG5q+EsyuL79bZk+Iq6l93V76pH2KSF3aiGW4mJYUejzwrBln2dWlCiO28Tjiy
> Mn1K7+UOlNq3kQN/yHXakb2EB9+SbFqOf7tSkEu1LzBw0KUgHzeBX1IfpITIURXU
> XSL2ZfKeF80CMkumKaeC4iCjuLhavaXSEoWTSW+UGKDw/E5EKY1wAtr0XVkiBllZ
> 4D4hL56prrc5NAEfQPucmtxwdRvokUhZ8nz9KpvijRMAi3qCxL6GbQi4veIuIOcG
> z2sZ5/3lfAU21viSOZfkyz2jBHSVxHFDGSXDSE7WTmorrTlspIA2bntofC2sTKsq
> cfsVFvJLuNHT7TUwaEUW+bAvyDeakWspi0jQOY6yUrCA/5lOs8TPCi2l/TVmEeJg
> waEN8i+6vBQoPgKIPlNSkHo/S1TGmG87vHspDqm7SmAZamaLY6XGanJpwj3CTfw/
> BY4gfBbA0lk6GG+QyWCwleNRdmIWIbllDx1Kaark2vYPKWeVnQEn83kOnb0zYdpG
> QnfIJrMsg/grd2G9Eh8fxm5MSopYC+nnZnL5nBN+KcrzpE7KUgBxuXABGDweRUJ1
> cGD7g6LwMi/X+dARxmaZOoZzOmn6fvbNg9AwXRnUIDM44ZCBXuTNvL7FNFmolf6D
> 8FpVwDTP3xZJkaTzJmlnqf//XhuVaCIVa+xgbP4cB98WWDmCGxHioSo9Tah89zUc
> QI/hTlc1Da9xr8oMXkuiWqgjbRAx1sm/m2lK7T+ujlhKIDsGrTrNLEnQTU844Rs8
> yNI20I50cZvyXVu/YTz7IYCqMiKSB/hqvRK4uqy/zFc3DTEr3MQP0dUmbDrNHaar
> XhHjMWU16R7MvSkxj3xUmnExPqpdNnsJrVPR+7f70qFX0TUasj6b4MqWZKetcLuO
> s2uAHgE19FD1wG1UGisOVjWAyucVwGVv5a04d4mN0Bw8aNXzNfJYtJK1W5pfuOV0
> ghEozrw/1s/OoHjIFhNXXqnQ8nb+FE5al7CULNAqK3wEcgtXaM7Z0ShwBnWoOCn1
> dwUJ5I9JD9ygLv8Q6eBQzdgSX9TEuhHVGa/A/muifigbCWnn9lQS3fmGRKrFZlEk
> Pl/7y+w1+9mRa4z2HC0wW9cgOIEt/Wvdokn6HsRrpnyDlQ+eKbOMeVYLDDFACpEd
> +2JeXITdmcCevyMRyA3vGBUMNwMxQYx2crx9R16xqLIscPZIaYfeCSLBb+WxwG1V
> KKxryvqAuc7CxJqwHz8e+c/2r21sUM/4m8ybdCTdiLgcMN5qOFaYoleq433u10Ng
> 6ir47G6cnFBkKsc5rV7hgblX3yfCYS4VNph+ilhujqnnILQvXnLTmE0v6zkxOlHn
> 1BZrdcERms17VM/FfgvvZIM3UsbXHlJeECbt5A1YEEQogThgLqWgQzdI+Jx7ynJj
> YvZrp5dYStcCzWMsGPbyPHBLBGiRclus84doI0R8gKf+wqWa4TE2ELMpgNE9Fs9+
> taCzb6V7h7LjrePEOPyLSAn/dr4mzIJ7/xoBgkIlI0s8HxeJDf+bCZiiITMxZiH7
> 1isMczj+LH0tfIXKgd5h2K8MEo/zrT4pZJKXZF/FXt2ttMNSZ/jCu9k8OEoKIREL
> GMC41ZK2cQ4PDKCRAlJUv0Oxq5HV2NlxO4hAZ5dASzyCY/ZJ4PpMr4LBo5rWefYm
> mFuzr9ye1po2vUMyZfxbKmBy+TZ2lNY91uR+IUJGi+BAIBTkjHeScqB8gqgU3NDA
> XCS6CLo7vriCe/R1vn4Fkz3t8wrDwXcCYHCrgkoJbxJQoiH0tQ9WV3S394kaeGfx
> UXItUQ9oB7zTSO6GiMr750XhkgfynGePXDFt4MTc5Tf8ECq/hfihNHcB1NvYfFwA
> zn/YhXsrZgEnlvKFtOFM7Zruo+gCH7OmD4D/VgU9DuG1kIh98FYYJB13whPBGsms
> 5cGkcW9I0ksAUfTeGdXH83W4Wg0fwcAaMr7rrJBsmN06UDxQl7jtHql57bB5Tkfh
> zN2lB+TvEYRA2jnYPIe1X2CZa9P0TciiHd15FtlDvX6ODasjrAGY02beEa2AnCnQ
> JhBIeW8e3Tfuy9ENHuyysJ6IoCczfnhBjBXvK8Ulq0wfQSMVcAiChSVgquWFhKsM
> Zvz3uEG28WfGz4Bl42ym16DmCaa26UwhSCj/2HlOYMm7KZAMCB2I7oBUp4RHZDVB
> AW/YfM7gtnFgvlcgEaIOIa5PN6UcsvxV7ehWtFfsNPuz3cDebxphSB6KsFJ+81qJ
> dOovEMLimgHbwM/QL3uTX7p7go/d3ZQA1x53glqeLP+BcDdhMCQ5g5YhnAGFZHm2
> XfE/JWQZE9x44dgeM2qf5IE1VviZt5K1B88MRVU/NiOMBf8WxN7YIyCb6Pv+7VcN
> oFl70PCaSP7Ow0LVr7Cq+x9pfe0FmW3++8vAAaI7MjTdPPqwIbwcTiZtqhQEANPf
> cxbPkddsaYEqrv5BTkDnL3P5gG7ZI5vz5goIgMP3xRjv8DJGaW+cQIp6aqpufgME
> 1iVVjHj1CM5GKGVec8E5SNDqom3W/FJJatJ3Ih3UH0KYMT2NZfouNuZav8P8Z807
> 0ZEIMFPJP7O82xM8f7RlS68aTSwTC/KCj4t3PqJLZ2RjpXw51HSpy+ObsRymvBQw
> 4yRmxPI3zfT4y8AiosMuIHSmNjHDB2NUSKt4xVxeMpnvWQwC5sZCSpVnlhu6qWps
> H934JbIsvpqbhlPHOhtlk289BzCKCjRhn3Og0cb1J2mtqOqaZVl09KUntfbN8F58
> 2NsqPuhGgjGNxd4oCocMEt9sG5H9Bhqmi2kRg34MvzN8vuWvpY+HtaA9yyU3CvON
> wGObvyqUGgL2QH5MeBBZ7CUwo/N83I3Cc5qFRh/LK01Ye4mMxX8T103zN62RjwJ8
> ZhIint/PnqMwCcxBKSFqkooSkyKMwd5xUjJOZK/KReGTkIGEUVUpmgI9VXaHbQNq
> xLEreUsQHtcFPOj2Lhjy+vP6NfImmow2Npw8OiRANFsJ0Qvnult2wm0/3SOeXYQm
> Z6+ku/GyH/7S4geL717Ecf01/pwBpRJ0q+8RvT12atKZVvXvz6pr7U4PGIXkBD/S
> PVYIq45YtMSlcauvsu25siHjuL0/4TUFdYK1J10n7XkxSqvyeXx6mOzngODXQCMh
> +Ori/n8rN303siB95Bv9ep5Mjvgr5T35/jB8OcQIxCW5JEb4cvGEgC68C1FE3Nyh
> zUB2TPM44r3V9H91fAdIEl8gVquzwxSg5FQTVQrB57PyGBlHM1qUHUGrO7ufSzTv
> UWeAC+60mKhj3/B1oifBBsTyiP7g8L48aKHy6gf8F/+2W75f3fAwV0MLgg7ld54h
> msHm8lblP6ASEQiM5zvlMShsPy7fAlnTYwTTEjO1qRJLQZDE37KRRv0NWvVTeFce
> Uv/EWK31wci0nsoOGdNeJ7mm2M79sjbPZHck/UMkEnBK7XBNDBU4jNqfFvg1pfyz
> BUBr2U6nsTS8k/ZtIvQ7sREXIzgLu7b2tkV8T0g0MQfMphv8KJsjtvJlPEbdYUPc
> S8ROUBVt66Ve77vTrOXkKYDPAJeM0fs+5bb5SYbcrGCSnRNgMxCI/QtGwoJ1iVX7
> enjBAacvT283vSVckZAWGCqyFYZClTD9a7xP6Zf6Pevrsh6eSf4culOXzUlLv7bu
> oexxpJerdHTTNz/dnKzfJdJ2WEOHn0loxCBawZlipCRu4us4zE9eLKefK51hrXbB
> LDc1M7y/w1eBb+pxA1H/ZjVErHkP+nYApt0tiNi92RPvMY+hfcBE708a95Wj/MVB
> t0ALyO+EWyXZ+/U6Zy9Q7XW735zsmmxd6MxnR9M88WmKQk3PJO/oH4aqG5gmiTcD
> avvU7FLVvJOrDT7h7LBUN9NmPoeD1yZp7cJn0bf3XUSPqMGovkeh9Ws5FMxM847j
> rOMZvdcCE06sfx2Kqcay97IH0gJBjHK83uKY9QgVD7HHc0pgd+6Nrj7H5wxdTs9s
> L/DZxgAr9CEEmcdYDtlO76rGWvWkq5Y6WAl4q0F2XC4LcbHFzvVdzladeVECSCHm
> 3HNyIJXB6eFFVXO9pgC0EaD1sRSdViR6ZP3vORbcoxmY+lZYjoYzbs5ueJ7TvXJw
> iTNVHTbT7nKyEGmMdLh+Un4IagxmibiMdM/a6rrSpunau/pMJvhau8v4DtUuy9lf
> O6h/MRjqzdePEtc9CyjSMpNxlTnWps1voTLsIL4kGuIZSoeJVZkCVpnPfosGyurp
> 0kOYnrVM0DyFzBiargQESCoKvP+GCcV2mreGhYpqws8pqXlYMgaLcrF5+D8dVOMh
> yivi0mtNkOFR5uwr1G6IfLtGPFtz7q6AKATKCIJZqFGA0w7OeYUhrI38JP/dKW6R
> CpsypTHkjl/cUbIvj36YmHx3SEuTvAdykhT45IfXOLYG0RGD4TRYRt5keogMYZQg
> sdUdg4bG2xcMhx5p3Gd7DQFlavCx8hnrrUQj24InHzOFSXlrsnTkBJdELbbyG3Ws
> cS81pt+Ky8p3jJADK0wBvzidvx56fihyyYx5iRpDFuBWTQIhQCASMOTow0XvTP6I
> RdEy2z8rK0VC82ouCwhhTCeAWubAf87R15cG13FWaKtKamkIkZwUOI/HqnGfZTEY
> EqJNY41RxegX3auS6D2S3WtIlQUI5ps9sjV/XIYbtFOKj6kLknAs1zMEL04GLF3A
> STRX/8wAdc9QPQ1S2Zfvcm/MsdL3eQfKORSZxxdDnkgWzio9cEEz+PLsmOxNBjm8
> xTwhabJmzTM2ezPLMvibEBQ0MHkyxsD1tqAe1l5fvwtYN+19ySnKcrM0kn0Wzl5U
> WnoVMyffQOVe+mi1WI1qNbkiJNDtfsHBkS+O97gzrr7TmheL8G+DAkIZFPss/5Id
> rf6U9BgbVW7fohRqcmhfzel1CpZgXyoKb8XhX8MjSoWP8JnpsV4xW/kh9UIBcOeu
> BjXxY8H8MyakoGjqCG1qEbUBP26pWz/xluEkqmxtg/110/zOuw7qGxCOaOGKSDdo
> z754fxo=
> =ouHB
> -----END PGP MESSAGE-----
>

[-- Attachment #1.2: Type: text/html, Size: 53840 bytes --]

[-- Attachment #2: debian.dmesg --]
[-- Type: application/octet-stream, Size: 43839 bytes --]

[    0.000000] Allocated 131072 bytes for 32 pacas at c00000000ffe0000
[    0.000000] DART table allocated at: c00000007f000000
[    0.000000] Using PowerMac machine description
[    0.000000] Page orders: linear mapping = 24, virtual = 12, io = 12, vmemmap = 24
[    0.000000] cma: Reserved 208 MiB at 0x000000016f000000
[    0.000000] Found initrd at 0xc000000001b00000:0xc000000002d35000
[    0.000000] Found U3 memory controller & host bridge @ 0xf8000000 revision: 0xb3
[    0.000000] Mapped at 0xd000080080000000
[    0.000000] Found a K2 mac-io controller, rev: 32, mapped at 0xd000080080050000
[    0.000000] PowerMac motherboard: PowerMac G5
[    0.000000] DART IOMMU initialized for U3 type chipset
[    0.000000] bootconsole [udbg0] enabled
[    0.000000] CPU maps initialized for 1 thread per core
[    0.000000]  (thread shift is 0)
[    0.000000] Freed 65536 bytes for unused pacas
[    0.000000] Starting Linux ppc64 #1 SMP Debian 4.6.4-1 (2016-07-18)
[    0.000000] -----------------------------------------------------
[    0.000000] ppc64_pft_size    = 0x0
[    0.000000] phys_mem_size     = 0x100000000
[    0.000000] cpu_features      = 0x0804806318100448
[    0.000000]   possible        = 0x3fffffff18500649
[    0.000000]   always          = 0x0000000018100040
[    0.000000] cpu_user_features = 0xdc080000 0x00000000
[    0.000000] mmu_features      = 0x0c000001
[    0.000000] firmware_features = 0x0000000000000000
[    0.000000] htab_address      = 0xc00000017c000000
[    0.000000] htab_hash_mask    = 0x7ffff
[    0.000000] -----------------------------------------------------
[    0.000000] Linux version 4.6.0-1-powerpc64 (debian-kernel@lists.debian.org) (gcc version 5.4.0 20160609 (Debian 5.4.0-6) ) #1 SMP Debian 4.6.4-1 (2016-07-18)
[    0.000000] Top of RAM: 0x180000000, Total RAM: 0x100000000
[    0.000000] Memory hole size: 2048MB
[    0.000000] numa: Initmem setup node 0 [mem 0x00000000-0x17fffffff]
[    0.000000] numa:   NODE_DATA [mem 0x16efc6100-0x16efcffff]
[    0.000000] Found U3-AGP PCI host bridge.  Firmware bus number: 240->255
[    0.000000] PCI host bridge /pci@0,f0000000  ranges:
[    0.000000]  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
[    0.000000]   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
[    0.000000]  MEM 0x00000000a0000000..0x00000000bfffffff -> 0x00000000a0000000 
[    0.000000] Can't get bus-range for /ht@0,f2000000, assume bus 0
[    0.000000] Found U3-HT PCI host bridge.  Firmware bus number: 0->239
[    0.000000] PCI host bridge /ht@0,f2000000 (primary) ranges:
[    0.000000] via-pmu: Server Mode is disabled
[    0.000000] PMU driver v2 initialized for Core99, firmware: 0c
[    0.000000] nvram: Checking bank 0...
[    0.000000] nvram: gen0=891, gen1=892
[    0.000000] nvram: Active bank is: 1
[    0.000000] nvram: OF partition at 0x410
[    0.000000] nvram: XP partition at 0x1020
[    0.000000] nvram: NR partition at 0x1120
[    0.000000] Top of RAM: 0x180000000, Total RAM: 0x100000000
[    0.000000] Memory hole size: 2048MB
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000000000-0x000000017fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000017fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000017fffffff]
[    0.000000] On node 0 totalpages: 65536
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 65536 pages, LIFO batch:1
[    0.000000] percpu: Embedded 3 pages/cpu @c00000016ee00000 s133912 r0 d62696 u524288
[    0.000000] pcpu-alloc: s133912 r0 d62696 u524288 alloc=1*1048576
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 65472
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: root=UUID=aeca9a67-31d7-4c4b-a0f8-4db328b33305  
[    0.000000] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000] Sorting __ex_table...
[    0.000000] Memory: 3847232K/4194304K available (8320K kernel code, 1920K rwdata, 1920K rodata, 1024K init, 2068K bss, 134080K reserved, 212992K cma-reserved)
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=2
[    0.000000] NR_IRQS:512 nr_irqs:512 16
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 2 CPUs
[    0.000000] mpic: ISU size: 120, shift: 7, mask: 7f
[    0.000000] mpic: Initializing for 120 sources
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 2   " version 1.2 at f8040000, max 2 CPUs
[    0.000000] mpic: ISU size: 120, shift: 7, mask: 7f
[    0.000000] mpic: Initializing for 120 sources
[    0.000000] /u3@0,f8000000/mpic@f8040000: hooking up to IRQ 56
[    0.000000] time_init: decrementer frequency = 33.333333 MHz
[    0.000000] time_init: processor frequency   = 2000.000000 MHz
[    0.000003] clocksource: timebase: mask: 0xffffffffffffffff max_cycles: 0x7b00c4bad, max_idle_ns: 440795202744 ns
[    0.000818] clocksource: timebase mult[1e000005] shift[24] registered
[    0.001535] clockevent: decrementer mult[8888887] shift[32] cpu[0]
[    0.001792] Console: colour dummy device 80x25
[    0.002456] console [tty0] enabled
[    0.003094] bootconsole [udbg0] disabled
[    0.003905] pid_max: default: 32768 minimum: 301
[    0.004056] Security Framework initialized
[    0.004064] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.004085] AppArmor: AppArmor disabled by boot time parameter
[    0.004186] Dentry cache hash table entries: 524288 (order: 6, 4194304 bytes)
[    0.008408] Inode-cache hash table entries: 262144 (order: 5, 2097152 bytes)
[    0.010543] Mount-cache hash table entries: 8192 (order: 0, 65536 bytes)
[    0.010561] Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes)
[    0.011326] Disabling memory control group subsystem
[    0.011406] ftrace: allocating 22126 entries in 9 pages
[    0.029982] PowerMac SMP probe found 2 cpus
[    0.030161] KeyWest i2c @0xf8001003 irq 42 /u3@0,f8000000/i2c@f8001000
[    0.030171]  channel 0 bus <multibus>
[    0.030177]  channel 1 bus <multibus>
[    0.030238] KeyWest i2c @0x80018000 irq 26 /ht@0,f2000000/pci@3/mac-io@7/i2c@18000
[    0.030247]  channel 0 bus <multibus>
[    0.030288] PMU i2c /ht@0,f2000000/pci@3/mac-io@7/via-pmu@16000/pmu-i2c
[    0.030295]  channel 1 bus <multibus>
[    0.030301]  channel 2 bus <multibus>
[    0.030399] Processor timebase sync using Cypress i2c clock
[    0.030405] mpic: requesting IPIs...
[    0.030502] PPC970/FX/MP performance monitor hardware support registered
[    0.072396] Brought up 2 CPUs
[    0.073828] devtmpfs: initialized
[    0.217744] EEH: devices created
[    0.217928] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.218573] NET: Registered protocol family 16
[    0.218613] eeh_init: Platform EEH operation not found
[    0.218713] IBM eBus Device Driver
[    0.228591] cpuidle: using governor ladder
[    0.240590] cpuidle: using governor menu
[    0.242996] PCI: Probing PCI hardware
[    0.243115] PCI host bridge to bus 0000:f0
[    0.243125] pci_bus 0000:f0: root bus resource [io  0x10000-0x80ffff] (bus address [0x0000-0x7fffff])
[    0.243135] pci_bus 0000:f0: root bus resource [mem 0xf1000000-0xf1ffffff]
[    0.243142] pci_bus 0000:f0: root bus resource [mem 0xa0000000-0xbfffffff]
[    0.243150] pci_bus 0000:f0: root bus resource [bus f0-ff]
[    0.243160] pci_bus 0000:f0: busn_res: [bus f0-ff] end is updated to ff
[    0.243187] pci 0000:f0:0b.0: [106b:004b] type 00 class 0x060000
[    0.243367] pci 0000:f0:10.0: [1002:4150] type 00 class 0x030000
[    0.243385] pci 0000:f0:10.0: reg 0x10: [mem 0xb0000000-0xbfffffff pref]
[    0.243396] pci 0000:f0:10.0: reg 0x14: [io  0x10400-0x104ff]
[    0.243406] pci 0000:f0:10.0: reg 0x18: [mem 0xa0000000-0xa000ffff]
[    0.243435] pci 0000:f0:10.0: reg 0x30: [mem 0xa0020000-0xa003ffff pref]
[    0.243472] pci 0000:f0:10.0: supports D1 D2
[    0.278284] IOMMU table initialized, virtual merging enabled
[    0.278358] pci_bus 0000:f0: busn_res: [bus f0-ff] end is updated to f0
[    0.278470] PCI host bridge to bus 0001:00
[    0.278479] pci_bus 0001:00: root bus resource [io  0x820000-0xc1ffff] (bus address [0x0000-0x3fffff])
[    0.278489] pci_bus 0001:00: root bus resource [mem 0xfa000000-0xffffffff]
[    0.278496] pci_bus 0001:00: root bus resource [mem 0x80000000-0x9fffffff]
[    0.278504] pci_bus 0001:00: root bus resource [mem 0xc0000000-0xefffffff]
[    0.278511] pci_bus 0001:00: root bus resource [bus 00-ef]
[    0.278521] pci_bus 0001:00: busn_res: [bus 00-ef] end is updated to ff
[    0.278544] pci 0001:00:00.0: [106b:004a] type 00 class 0x060000
[    0.278656] pci 0001:00:01.0: [1022:7450] type 01 class 0x060400
[    0.278794] pci 0001:00:02.0: [1022:7450] type 01 class 0x060400
[    0.278938] pci 0001:00:03.0: [106b:0045] type 01 class 0x060400
[    0.279085] pci 0001:00:04.0: [106b:0046] type 01 class 0x060400
[    0.279224] pci 0001:00:05.0: [106b:0047] type 01 class 0x060400
[    0.279364] pci 0001:00:06.0: [106b:0048] type 01 class 0x060400
[    0.279514] pci 0001:00:07.0: [106b:0049] type 01 class 0x060400
[    0.279757] pci 0001:00:01.0: PCI bridge to [bus 06]
[    0.279853] pci 0001:07:04.0: [8086:1229] type 00 class 0x020000
[    0.279870] pci 0001:07:04.0: reg 0x10: [mem 0x90000000-0x90000fff]
[    0.279878] pci 0001:07:04.0: reg 0x14: [io  0x820000-0x82003f]
[    0.279886] pci 0001:07:04.0: reg 0x18: [mem 0x90200000-0x902fffff]
[    0.279907] pci 0001:07:04.0: reg 0x30: [mem 0x90100000-0x901fffff pref]
[    0.279937] pci 0001:07:04.0: supports D1 D2
[    0.279940] pci 0001:07:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280045] pci 0001:00:02.0: PCI bridge to [bus 07]
[    0.280057] pci 0001:00:02.0:   bridge window [io  0x820000-0x820fff]
[    0.280063] pci 0001:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
[    0.280192] pci 0001:01:07.0: [106b:0041] type 00 class 0xff0000
[    0.280207] pci 0001:01:07.0: reg 0x10: [mem 0x80000000-0x8007ffff]
[    0.280346] pci 0001:01:08.0: [106b:0040] type 00 class 0x0c0310
[    0.280360] pci 0001:01:08.0: reg 0x10: [mem 0x80081000-0x80081fff]
[    0.280490] pci 0001:01:09.0: [106b:0040] type 00 class 0x0c0310
[    0.280504] pci 0001:01:09.0: reg 0x10: [mem 0x80080000-0x80080fff]
[    0.280629] pci 0001:00:03.0: PCI bridge to [bus 01]
[    0.280644] pci 0001:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.280671] pci 0001:00:03.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.280823] pci 0001:02:0b.0: [1033:0035] type 00 class 0x0c0310
[    0.280841] pci 0001:02:0b.0: reg 0x10: [mem 0x80102000-0x80102fff]
[    0.280907] pci 0001:02:0b.0: supports D1 D2
[    0.280911] pci 0001:02:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.281022] pci 0001:02:0b.1: [1033:0035] type 00 class 0x0c0310
[    0.281039] pci 0001:02:0b.1: reg 0x10: [mem 0x80101000-0x80101fff]
[    0.281103] pci 0001:02:0b.1: supports D1 D2
[    0.281107] pci 0001:02:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.281214] pci 0001:02:0b.2: [1033:00e0] type 00 class 0x0c0320
[    0.281230] pci 0001:02:0b.2: reg 0x10: [mem 0x80100000-0x801000ff]
[    0.281295] pci 0001:02:0b.2: supports D1 D2
[    0.281299] pci 0001:02:0b.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.281401] pci 0001:00:04.0: PCI bridge to [bus 02]
[    0.281416] pci 0001:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
[    0.281422] pci 0001:00:04.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.281554] pci 0001:03:0d.0: [106b:0043] type 00 class 0xff0000
[    0.281566] pci 0001:03:0d.0: reg 0x10: [mem 0x80204000-0x80207fff]
[    0.281699] pci 0001:03:0e.0: [106b:0042] type 00 class 0x0c0010
[    0.281714] pci 0001:03:0e.0: reg 0x10: [mem 0x80200000-0x80200fff]
[    0.281774] pci 0001:03:0e.0: supports D1 D2
[    0.281778] pci 0001:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.281878] pci 0001:00:05.0: PCI bridge to [bus 03]
[    0.281893] pci 0001:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
[    0.281899] pci 0001:00:05.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.282032] pci 0001:04:0f.0: [106b:004c] type 00 class 0x020000
[    0.282048] pci 0001:04:0f.0: reg 0x10: [mem 0x80400000-0x805fffff]
[    0.282087] pci 0001:04:0f.0: reg 0x30: [mem 0x80300000-0x803fffff pref]
[    0.282182] pci 0001:00:06.0: PCI bridge to [bus 04]
[    0.282197] pci 0001:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
[    0.282203] pci 0001:00:06.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.282313] pci 0001:05:0c.0: [1166:0240] type 00 class 0x01018f
[    0.282328] pci 0001:05:0c.0: reg 0x10: [io  0x820000-0x820007]
[    0.282337] pci 0001:05:0c.0: reg 0x14: [io  0x820000-0x820003]
[    0.282346] pci 0001:05:0c.0: reg 0x18: [io  0x820000-0x820007]
[    0.282355] pci 0001:05:0c.0: reg 0x1c: [io  0x820000-0x820003]
[    0.282364] pci 0001:05:0c.0: reg 0x20: [io  0x820000-0x82000f]
[    0.282374] pci 0001:05:0c.0: reg 0x24: [mem 0x80600000-0x80601fff]
[    0.282481] pci 0001:00:07.0: PCI bridge to [bus 05]
[    0.282496] pci 0001:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
[    0.282502] pci 0001:00:07.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.282555] pci_bus 0001:00: busn_res: [bus 00-ff] end is updated to 07
[    0.282714] PCI 0000:f0 Cannot reserve Legacy IO [io  0x10000-0x10fff]
[    0.282718] PCI 0001:00 Cannot reserve Legacy IO [io  0x820000-0x820fff]
[    0.282728] pci_bus 0000:f0: resource 4 [io  0x10000-0x80ffff]
[    0.282731] pci_bus 0000:f0: resource 5 [mem 0xf1000000-0xf1ffffff]
[    0.282735] pci_bus 0000:f0: resource 6 [mem 0xa0000000-0xbfffffff]
[    0.282780] pci 0001:00:01.0: PCI bridge to [bus 06]
[    0.282796] pci 0001:07:04.0: BAR 1: assigned [io  0x820000-0x82003f]
[    0.282806] pci 0001:00:02.0: PCI bridge to [bus 07]
[    0.282814] pci 0001:00:02.0:   bridge window [io  0x820000-0x820fff]
[    0.282822] pci 0001:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
[    0.282832] pci 0001:00:03.0: PCI bridge to [bus 01]
[    0.282839] pci 0001:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.282849] pci 0001:00:04.0: PCI bridge to [bus 02]
[    0.282856] pci 0001:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
[    0.282866] pci 0001:00:05.0: PCI bridge to [bus 03]
[    0.282873] pci 0001:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
[    0.282882] pci 0001:00:06.0: PCI bridge to [bus 04]
[    0.282890] pci 0001:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
[    0.282899] pci 0001:00:07.0: PCI bridge to [bus 05]
[    0.282907] pci 0001:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
[    0.282917] pci_bus 0001:00: resource 4 [io  0x820000-0xc1ffff]
[    0.282920] pci_bus 0001:00: resource 5 [mem 0xfa000000-0xffffffff]
[    0.282924] pci_bus 0001:00: resource 6 [mem 0x80000000-0x9fffffff]
[    0.282928] pci_bus 0001:00: resource 7 [mem 0xc0000000-0xefffffff]
[    0.282931] pci_bus 0001:07: resource 0 [io  0x820000-0x820fff]
[    0.282935] pci_bus 0001:07: resource 1 [mem 0x90000000-0x902fffff]
[    0.282939] pci_bus 0001:01: resource 1 [mem 0x80000000-0x800fffff]
[    0.282942] pci_bus 0001:02: resource 1 [mem 0x80100000-0x801fffff]
[    0.282946] pci_bus 0001:03: resource 1 [mem 0x80200000-0x802fffff]
[    0.282950] pci_bus 0001:04: resource 1 [mem 0x80300000-0x805fffff]
[    0.282953] pci_bus 0001:05: resource 1 [mem 0x80600000-0x806fffff]
[    0.282956] PCI: Probing PCI hardware done
[    0.301160] HugeTLB registered 16 MB page size, pre-allocated 0 pages
[    0.301930] vgaarb: device added: PCI:0000:f0:10.0,decodes=io+mem,owns=mem,locks=none
[    0.301975] vgaarb: loaded
[    0.301979] vgaarb: bridge control possible 0000:f0:10.0
[    0.302168] SCSI subsystem initialized
[    0.302293] libata version 3.00 loaded.
[    0.302920] clocksource: Switched to clocksource timebase
[    0.322776] VFS: Disk quotas dquot_6.6.0
[    0.322895] VFS: Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
[    0.328868] NET: Registered protocol family 2
[    0.329226] TCP established hash table entries: 32768 (order: 2, 262144 bytes)
[    0.329486] TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
[    0.330281] TCP: Hash tables configured (established 32768 bind 32768)
[    0.330390] UDP hash table entries: 2048 (order: 0, 65536 bytes)
[    0.330472] UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
[    0.330755] NET: Registered protocol family 1
[    0.330801] PCI: CLS mismatch (32 != 64), using 128 bytes
[    0.330813] pci 0001:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.330821] pci 0001:00:01.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
[    0.330831] pci 0001:00:02.0: MSI quirk detected; subordinate MSI disabled
[    0.330838] pci 0001:00:02.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
[    0.330888] pci 0001:01:08.0: enabling device (0000 -> 0002)
[    0.386961] pci 0001:01:09.0: enabling device (0000 -> 0002)
[    0.442944] pci 0001:02:0b.0: enabling device (0000 -> 0002)
[    0.498937] pci 0001:02:0b.1: enabling device (0000 -> 0002)
[    0.554936] pci 0001:02:0b.2: enabling device (0004 -> 0006)
[    0.555097] Unpacking initramfs...
[    1.184919] Freeing initrd memory: 18624K (c000000001b00000 - c000000002d30000)
[    1.185596] Hypercall H_BEST_ENERGY not supported
[    1.195461] futex hash table entries: 512 (order: 0, 65536 bytes)
[    1.195578] audit: initializing netlink subsys (disabled)
[    1.195623] audit: type=2000 audit(1474239938.147:1): initialized
[    1.195963] Initialise system trusted keyring
[    1.196224] workingset: timestamp_bits=36 max_order=16 bucket_order=0
[    1.196289] zbud: loaded
[    1.296775] Key type asymmetric registered
[    1.296794] Asymmetric key parser 'x509' registered
[    1.296877] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.296991] io scheduler noop registered
[    1.297003] io scheduler deadline registered
[    1.297038] io scheduler cfq registered (default)
[    1.297352] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.297372] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.297419] Using unsupported 1920x1080 ATY,Simone_A at b8008000, depth=8, pitch=2048
[    1.337602] Console: switching to colour frame buffer device 240x67
[    1.377165] fb0: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_A@0
[    1.377496] Using unsupported 640x480 ATY,Simone_B at b2008000, depth=8, pitch=768
[    1.377734] checking generic (b8008000 21c000) vs hw (b2008000 5a000)
[    1.377875] fb1: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_B@1
[    1.378365] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.379143] pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[    1.379388] Linux agpgart interface v0.103
[    1.379535] agpgart-uninorth 0000:f0:0b.0: Apple U3 chipset
[    1.384589] agpgart-uninorth 0000:f0:0b.0: configuring for size idx: 64
[    1.384941] agpgart-uninorth 0000:f0:0b.0: AGP aperture is 256M @ 0x0
[    1.385379] MacIO PCI driver attached to K2 chipset
[    1.386399] 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    1.387067] 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    1.387786] pata-pci-macio 0001:03:0d.0: enabling device (0014 -> 0016)
[    1.402943] pata-pci-macio 0001:03:0d.0: Activating pata-macio chipset K2 ATA-6, Apple bus ID 3
[    1.403775] scsi host0: pata_macio
[    1.404017] ata1: PATA max UDMA/100 irq 39
[    1.404437] mousedev: PS/2 mouse device common for all mice
[    1.404995] rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
[    1.405299] PowerMac i2c bus pmu 2 registered
[    1.405483] PowerMac i2c bus pmu 1 registered
[    1.405668] PowerMac i2c bus mac-io 0 registered
[    1.405861] i2c i2c-2: No i2c address for /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/i2c-modem
[    1.406482] PowerMac i2c bus u3 1 registered
[    1.406687] i2c i2c-3: i2c-powermac: modalias failure on /u3@0,f8000000/i2c@f8001000/cereal@1c0
[    1.407029] PowerMac i2c bus u3 0 registered
[    1.443077] Registering G5 CPU frequency driver
[    1.443218] Frequency method: i2c/pfunc, Voltage method: i2c/pfunc
[    1.443398] Low: 1304 Mhz, High: 2000 Mhz, Cur: 2000 MHz
[    1.443642] ledtrig-cpu: registered to indicate activity on CPUs
[    1.444034] NET: Registered protocol family 10
[    1.444657] mip6: Mobile IPv6
[    1.444761] NET: Registered protocol family 17
[    1.444902] mpls_gso: MPLS GSO support
[    1.445070] PM: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    1.445661] registered taskstats version 1
[    1.445811] Loading compiled-in X.509 certificates
[    1.451056] alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
[    1.451928] Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
[    1.452217] zswap: loaded using pool lzo/zbud
[    1.452995] input: PMU as /devices/virtual/input/input0
[    1.453489] rtc-generic rtc-generic: setting system clock to 2016-09-18 23:05:38 UTC (1474239938)
[    1.454456] PM: Hibernation image not present or could not be loaded.
[    1.561642] ata1.00: ATAPI: HL-DT-ST RW/DVD GCC-4480B, 1.03, max UDMA/33
[    1.575945] ata1.00: configured for UDMA/33
[    1.586342] blk_queue_max_segment_size: set to minimum 65536
[    1.596614] scsi 0:0:0:0: CD-ROM            HL-DT-ST RW/DVD GCC-4480B 1.03 PQ: 0 ANSI: 5
[    1.606421] ata1.00: K2/Shasta alignment limits applied
[    1.624302] Freeing unused kernel memory: 1024K (c000000000a10000 - c000000000b10000)
[    1.634177] This architecture does not have kernel memory protection.
[    1.719801] random: systemd-udevd urandom read with 10 bits of entropy available
[    1.869024] usb_common: module verification failed: signature and/or required key missing - tainting kernel
[    1.880686] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    1.890800] e100: Copyright(c) 1999-2006 Intel Corporation
[    1.897276] usbcore: registered new interface driver usbfs
[    1.897301] usbcore: registered new interface driver hub
[    1.897381] usbcore: registered new device driver usb
[    1.900702] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.903320] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.904091] ehci-pci: EHCI PCI platform driver
[    1.904245] ehci-pci 0001:02:0b.2: EHCI Host Controller
[    1.904259] ehci-pci 0001:02:0b.2: new USB bus registered, assigned bus number 1
[    1.904517] ehci-pci 0001:02:0b.2: irq 63, io mem 0x80100000
[    1.915158] ehci-pci 0001:02:0b.2: USB 2.0 started, EHCI 1.00
[    1.915408] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.915410] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.915413] usb usb1: Product: EHCI Host Controller
[    1.915415] usb usb1: Manufacturer: Linux 4.6.0-1-powerpc64 ehci_hcd
[    1.915417] usb usb1: SerialNumber: 0001:02:0b.2
[    1.933705] firewire_ohci 0001:03:0e.0: enabling device (0000 -> 0002)
[    1.944988] sungem.c:v1.0 David S. Miller <davem@redhat.com>
[    1.947526] gem 0001:04:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:0a:95:bb:30:6c
[    1.950461] sr 0:0:0:0: [sr0] scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[    1.950467] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.971247] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    1.971962] hub 1-0:1.0: USB hub found
[    1.971994] hub 1-0:1.0: 5 ports detected
[    1.973101] ohci-pci: OHCI PCI platform driver
[    1.973184] ohci-pci 0001:01:08.0: OHCI PCI host controller
[    1.973197] ohci-pci 0001:01:08.0: new USB bus registered, assigned bus number 2
[    1.973327] ohci-pci 0001:01:08.0: irq 27, io mem 0x80081000
[    1.987082] firewire_ohci 0001:03:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[    2.005219] sata_svw 0001:05:0c.0: version 2.3
[    2.024276] scsi host1: sata_svw
[    2.056745] scsi host2: sata_svw
[    2.070810] scsi host3: sata_svw
[    2.077698] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.077701] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.077703] usb usb2: Product: OHCI PCI host controller
[    2.077705] usb usb2: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
[    2.077707] usb usb2: SerialNumber: 0001:01:08.0
[    2.078665] hub 2-0:1.0: USB hub found
[    2.079287] hub 2-0:1.0: 2 ports detected
[    2.080733] ohci-pci 0001:01:09.0: OHCI PCI host controller
[    2.080749] ohci-pci 0001:01:09.0: new USB bus registered, assigned bus number 3
[    2.080891] ohci-pci 0001:01:09.0: irq 28, io mem 0x80080000
[    2.084699] scsi host4: sata_svw
[    2.084863] ata2: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600000 irq 16
[    2.084867] ata3: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600100 irq 16
[    2.084870] ata4: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600200 irq 16
[    2.084873] ata5: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600300 irq 16
[    2.197191] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.197194] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.197196] usb usb3: Product: OHCI PCI host controller
[    2.197198] usb usb3: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
[    2.197200] usb usb3: SerialNumber: 0001:01:09.0
[    2.197559] hub 3-0:1.0: USB hub found
[    2.197931] hub 3-0:1.0: 2 ports detected
[    2.199952] ohci-pci 0001:02:0b.0: OHCI PCI host controller
[    2.199966] ohci-pci 0001:02:0b.0: new USB bus registered, assigned bus number 4
[    2.200086] ohci-pci 0001:02:0b.0: irq 63, io mem 0x80102000
[    2.289449] gem 0001:04:0f.0 enP1p4s15f0: renamed from eth0
[    2.301515] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.301518] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.301520] usb usb4: Product: OHCI PCI host controller
[    2.301522] usb usb4: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
[    2.301524] usb usb4: SerialNumber: 0001:02:0b.0
[    2.301882] hub 4-0:1.0: USB hub found
[    2.302489] hub 4-0:1.0: 3 ports detected
[    2.302970] ohci-pci 0001:02:0b.1: OHCI PCI host controller
[    2.302983] ohci-pci 0001:02:0b.1: new USB bus registered, assigned bus number 5
[    2.303109] ohci-pci 0001:02:0b.1: irq 63, io mem 0x80101000
[    2.338936] usb 1-3: new high-speed USB device number 3 using ehci-pci
[    2.379092] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.379095] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.379098] usb usb5: Product: OHCI PCI host controller
[    2.379100] usb usb5: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
[    2.379102] usb usb5: SerialNumber: 0001:02:0b.1
[    2.380233] hub 5-0:1.0: USB hub found
[    2.380274] hub 5-0:1.0: 2 ports detected
[    2.391045] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.407555] ata2.00: ATA-6: ST3160023AS, 3.05, max UDMA/133
[    2.407559] ata2.00: 312581808 sectors, multi 16: LBA48 
[    2.427742] ata2.00: configured for UDMA/133
[    2.428058] scsi 1:0:0:0: Direct-Access     ATA      ST3160023AS      3.05 PQ: 0 ANSI: 5
[    2.569307] usb 1-3: New USB device found, idVendor=111d, idProduct=0000
[    2.569311] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.569313] usb 1-3: SerialNumber: 11110758000481
[    2.620551] e100 0001:07:04.0: enabling device (0004 -> 0007)
[    2.656914] e100 0001:07:04.0 eth0: addr 0x90000000, irq 54, MAC addr 00:0e:0c:07:b3:47
[    2.669012] e100 0001:07:04.0 enP1p7s4: renamed from eth0
[    3.008239] ata3: SATA link down (SStatus 4 SControl 300)
[    3.015925] usb 5-2: new full-speed USB device number 2 using ohci-pci
[    3.235027] usb 5-2: New USB device found, idVendor=413c, idProduct=1005
[    3.242833] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.250634] usb 5-2: Product: Dell Multimedia Pro Keyboard Hub
[    3.258435] usb 5-2: Manufacturer: Dell
[    3.278370] hub 5-2:1.0: USB hub found
[    3.288033] hub 5-2:1.0: 3 ports detected
[    3.303946] usb-storage 1-3:1.0: USB Mass Storage device detected
[    3.311860] scsi host5: usb-storage 1-3:1.0
[    3.319712] usbcore: registered new interface driver usb-storage
[    3.322958] usb 4-1: new low-speed USB device number 2 using ohci-pci
[    3.336436] usbcore: registered new interface driver uas
[    3.346480] ata4: SATA link down (SStatus 4 SControl 300)
[    3.528968] usb 4-1: New USB device found, idVendor=0461, idProduct=4d81
[    3.536768] usb 4-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    3.544561] usb 4-1: Product: USB Optical Mouse
[    3.560536] hidraw: raw HID events driver (C) Jiri Kosina
[    3.577302] usbcore: registered new interface driver usbhid
[    3.585246] usbhid: USB HID core driver
[    3.595673] input: USB Optical Mouse as /devices/pci0001:00/0001:00:04.0/0001:02:0b.0/usb4/4-1/4-1:1.0/0003:0461:4D81.0001/input/input1
[    3.604266] hid-generic 0003:0461:4D81.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0001:02:0b.0-1/input0
[    3.646937] usb 5-2.1: new low-speed USB device number 3 using ohci-pci
[    3.676608] ata5: SATA link down (SStatus 4 SControl 300)
[    3.694425] sd 1:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    3.703864] sd 1:0:0:0: [sda] Write Protect is off
[    3.712711] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.712829] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.737657]  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
[    3.748078] sd 1:0:0:0: [sda] Attached SCSI disk
[    3.789028] usb 5-2.1: New USB device found, idVendor=413c, idProduct=2011
[    3.798057] usb 5-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.807043] usb 5-2.1: Product: Dell Multimedia Pro Keyboard
[    3.816024] usb 5-2.1: Manufacturer: Dell
[    3.842387] input: Dell Dell Multimedia Pro Keyboard as /devices/pci0001:00/0001:00:04.0/0001:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.0/0003:413C:2011.0002/input/input2
[    3.908423] hid-generic 0003:413C:2011.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell Multimedia Pro Keyboard] on usb-0001:02:0b.1-2.1/input0
[    3.935570] input: Dell Dell Multimedia Pro Keyboard as /devices/pci0001:00/0001:00:04.0/0001:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.1/0003:413C:2011.0003/input/input3
[    3.999380] hid-generic 0003:413C:2011.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell Multimedia Pro Keyboard] on usb-0001:02:0b.1-2.1/input1
[    4.467182] scsi 5:0:0:0: Direct-Access     CENTON   DS Pro                PQ: 0 ANSI: 0 CCS
[    4.481390] sd 5:0:0:0: [sdb] 7843840 512-byte logical blocks: (4.02 GB/3.74 GiB)
[    4.492987] sd 5:0:0:0: [sdb] Write Protect is off
[    4.503301] sd 5:0:0:0: [sdb] Mode Sense: 43 00 00 00
[    4.504083] sd 5:0:0:0: [sdb] No Caching mode page found
[    4.514325] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[    4.532855]  sdb: sdb1
[    4.552856] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[    4.849877] PM: Starting manual resume from disk
[    4.860347] PM: Hibernation image partition 8:3 present
[    4.860350] PM: Looking for hibernation image.
[    4.866649] PM: Image not found (code -22)
[    4.866654] PM: Hibernation image not present or could not be loaded.
[    5.025177] random: nonblocking pool is initialized
[    5.213166] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[    6.203709] ip_tables: (C) 2000-2006 Netfilter Core Team
[    6.369482] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[    6.381345] systemd[1]: Detected architecture ppc64.
[    6.437767] systemd[1]: Set hostname to <Debian-G5>.
[    7.304687] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    7.328111] systemd[1]: Listening on Journal Socket.
[    7.351190] systemd[1]: Listening on udev Control Socket.
[    7.374710] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    7.398446] systemd[1]: Reached target Encrypted Volumes.
[    7.422686] systemd[1]: Created slice User and Session Slice.
[    7.446972] systemd[1]: Listening on Journal Audit Socket.
[    7.471104] systemd[1]: Listening on Journal Socket (/dev/log).
[    7.495574] systemd[1]: Created slice System Slice.
[    7.547510] systemd[1]: Starting Set the console keyboard layout...
[    7.611517] systemd[1]: Starting Load Kernel Modules...
[    7.636299] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    7.660083] systemd[1]: Listening on Syslog Socket.
[    7.695506] systemd[1]: Starting Journal Service...
[    7.721510] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    7.745361] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    7.783248] systemd[1]: Mounting Debug File System...
[    7.807309] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    7.833024] systemd[1]: Mounting POSIX Message Queue File System...
[    7.855858] systemd[1]: Listening on udev Kernel Socket.
[    7.891321] systemd[1]: Mounting Huge Pages File System...
[    7.966051] systemd[1]: Reached target User and Group Name Lookups.
[    7.989355] systemd[1]: Created slice system-getty.slice.
[    8.000970] lp: driver loaded but no devices found
[    8.023359] systemd[1]: Reached target Slices.
[    8.050228] systemd[1]: Reached target Remote File Systems.
[    8.081608] systemd[1]: Listening on fsck to fsckd communication Socket.
[    8.139516] systemd[1]: Starting Remount Root and Kernel File Systems...
[    8.202497] systemd[1]: Mounted Huge Pages File System.
[    8.213450] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
[    8.238672] systemd[1]: Mounted Debug File System.
[    8.278974] systemd[1]: Mounted POSIX Message Queue File System.
[    8.310475] systemd[1]: Started Journal Service.
[    8.652377] systemd-journald[175]: Received request to flush runtime journal from PID 1
[    9.546492] i2c /dev entries driver
[    9.676362] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    9.686516] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    9.739103] sd 5:0:0:0: Attached scsi generic sg2 type 0
[    9.820736] [drm] Initialized drm 1.1.0 20060810
[   10.310249] [drm] radeon kernel modesetting enabled.
[   10.319688] checking generic (b8008000 21c000) vs hw (b0000000 10000000)
[   10.319693] fb: switching to radeondrmfb from OFfb ATY,Simone
[   10.329081] Console: switching to colour dummy device 80x25
[   10.329641] checking generic (b2008000 5a000) vs hw (b0000000 10000000)
[   10.329646] fb: switching to radeondrmfb from OFfb ATY,Simone
[   10.329928] radeon 0000:f0:10.0: enabling device (0006 -> 0007)
[   10.330427] [drm] initializing kernel modesetting (RV350 0x1002:0x4150 0x1002:0x4150 0x00).
[   10.330462] [drm] register mmio base: 0xA0000000
[   10.330468] [drm] register mmio size: 65536
[   10.330521] radeon 0000:f0:10.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
[   10.423252] [drm] Not an x86 BIOS ROM, not using.
[   10.423294] [drm] Using device-tree clock info
[   10.423339] agpgart-uninorth 0000:f0:0b.0: putting AGP V3 device into 8x mode
[   10.423354] radeon 0000:f0:10.0: putting AGP V3 device into 8x mode
[   10.423481] radeon 0000:f0:10.0: GTT: 256M 0x00000000 - 0x0FFFFFFF
[   10.423490] [drm] Generation 2 PCI interface, using max accessible memory
[   10.423500] radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
[   10.423729] [drm] Detected VRAM RAM=256M, BAR=256M
[   10.423740] [drm] RAM width 128bits DDR
[   10.424048] [TTM] Zone  kernel: Available graphics memory: 2040416 kiB
[   10.424060] [TTM] Initializing pool allocator
[   10.424136] [drm] radeon: 64M of VRAM memory ready
[   10.424144] [drm] radeon: 256M of GTT memory ready.
[   10.424227] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   10.428380] radeon 0000:f0:10.0: WB disabled
[   10.428410] radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000000000000 and cpu addr 0xd0000000038a0000
[   10.428426] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   10.428432] [drm] Driver supports precise vblank timestamp query.
[   10.428495] [drm] radeon: irq initialized.
[   10.428542] [drm] Loading R300 Microcode
[   10.452324] snd-powermac no longer handles any machines with a layout-id property in the device-tree, use snd-aoa.
[   10.452347] Attempt to iounmap early bolted mapping at 0x          (null)
[   10.452353] Attempt to iounmap early bolted mapping at 0x          (null)
[   10.452359] Attempt to iounmap early bolted mapping at 0x          (null)
[   10.452365] Attempt to iounmap early bolted mapping at 0x          (null)
[   10.452371] Attempt to iounmap early bolted mapping at 0x          (null)
[   10.486631] radeon 0000:f0:10.0: firmware: direct-loading firmware radeon/R300_cp.bin
[   10.486865] [drm] radeon: ring at 0x0000000000010000
[   10.498361] snd-aoa-codec-tas: tas found, addr 0x35 on /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/deq@6a
[   10.634417] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD)
[   10.634526] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't working (-22).
[   10.634538] radeon 0000:f0:10.0: failed initializing CP (-22).
[   10.634546] radeon 0000:f0:10.0: Disabling GPU acceleration
[   10.781302] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle timeout, shutting down CP.
[   10.928260] Failed to wait GUI idle while programming pipes. Bad things might happen.
[   10.932698] [drm] radeon: cp finalized
[   10.932813] radeon 0000:f0:10.0: (r300_asic_reset:425) RBBM_STATUS=0x80010140
[   10.942208] windfarm: Initializing for desktop G5 with 2 chips
[   11.432810] radeon 0000:f0:10.0: (r300_asic_reset:444) RBBM_STATUS=0x80010140
[   11.928815] radeon 0000:f0:10.0: (r300_asic_reset:456) RBBM_STATUS=0x00000140
[   11.928851] radeon 0000:f0:10.0: GPU reset succeed
[   11.928914] [drm] radeon: cp finalized
[   11.929051] [TTM] Finalizing pool allocator
[   11.935034] [TTM] Zone  kernel: Used memory at exit: 0 kiB
[   11.935052] [drm] radeon: ttm finalized
[   11.935061] [drm] Forcing AGP to PCI mode
[   11.935124] radeon 0000:f0:10.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
[   12.021712] windfarm: CPUs control loops started.
[   12.021749] wf_pm72: Backside control loop started.
[   12.021755] wf_pm72: Drive bay control loop started.
[   12.037448] [drm] Not an x86 BIOS ROM, not using.
[   12.037490] [drm] Using device-tree clock info
[   12.037500] [drm] Generation 2 PCI interface, using max accessible memory
[   12.037515] radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
[   12.037525] radeon 0000:f0:10.0: GTT: 512M 0x0000000090000000 - 0x00000000AFFFFFFF
[   12.037538] [drm] Detected VRAM RAM=256M, BAR=256M
[   12.037544] [drm] RAM width 128bits DDR
[   12.037702] [TTM] Zone  kernel: Available graphics memory: 2040416 kiB
[   12.037710] [TTM] Initializing pool allocator
[   12.037791] [drm] radeon: 64M of VRAM memory ready
[   12.037798] [drm] radeon: 512M of GTT memory ready.
[   12.037840] [drm] GART: num cpu pages 8192, num gpu pages 131072
[   12.039662] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   12.039690] [drm] PCI GART of 512M enabled (table at 0x0000000062980000).
[   12.039820] radeon 0000:f0:10.0: WB enabled
[   12.039834] radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000090000000 and cpu addr 0xc000000147010000
[   12.039849] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   12.039855] [drm] Driver supports precise vblank timestamp query.
[   12.039902] [drm] radeon: irq initialized.
[   12.040079] [drm] radeon: ring at 0x0000000090010000
[   12.188699] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD)
[   12.188806] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't working (-22).
[   12.188820] radeon 0000:f0:10.0: failed initializing CP (-22).
[   12.188827] radeon 0000:f0:10.0: Disabling GPU acceleration
[   12.335530] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle timeout, shutting down CP.
[   12.335670] [drm] radeon: cp finalized
[   12.336841] [drm] Connector Table: 12 (mac g5 9600)
[   12.336868] [drm] No valid Ext TMDS info found in BIOS
[   12.336879] [drm] No TV DAC info found in BIOS
[   12.337048] [drm] No TMDS info found in BIOS
[   12.337221] [drm] Radeon Display Connectors
[   12.337227] [drm] Connector 0:
[   12.337231] [drm]   DVI-I-1
[   12.337236] [drm]   HPD1
[   12.337241] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[   12.337246] [drm]   Encoders:
[   12.337251] [drm]     DFP2: INTERNAL_DVO1
[   12.337256] [drm]     CRT2: INTERNAL_DAC2
[   12.337260] [drm] Connector 1:
[   12.337264] [drm]   DVI-I-2
[   12.337269] [drm]   HPD2
[   12.337273] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[   12.337279] [drm]   Encoders:
[   12.337283] [drm]     DFP1: INTERNAL_TMDS1
[   12.337288] [drm]     CRT1: INTERNAL_DAC1
[   12.337292] [drm] Connector 2:
[   12.337296] [drm]   SVIDEO-1
[   12.337301] [drm]   Encoders:
[   12.337305] [drm]     TV1: INTERNAL_DAC2
[   12.420233] [drm] fb mappable at 0xB0040000
[   12.420252] [drm] vram apper at 0xB0000000
[   12.420257] [drm] size 8323072
[   12.420261] [drm] fb depth is 24
[   12.420266] [drm]    pitch is 7680
[   12.474428] Console: switching to colour frame buffer device 240x67
[   12.514771] radeon 0000:f0:10.0: fb0: radeondrmfb frame buffer device
[   12.530654] [drm] Initialized radeon 2.43.0 20080528 for 0000:f0:10.0 on minor 0
[   13.783285] Unable to find swap-space signature
[   14.247606] EXT4-fs (sda4): mounting ext2 file system using the ext4 subsystem
[   14.256033] EXT4-fs (sda4): mounted filesystem without journal. Opts: (null)
[   21.379566] IPv6: ADDRCONF(NETDEV_UP): enP1p4s15f0: link is not ready
[   21.427306] sungem_phy: PHY ID: 2062e0, addr: 1
[   21.427572] gem 0001:04:0f.0 enP1p4s15f0: Found BCM5421-K2 PHY
[   21.428132] IPv6: ADDRCONF(NETDEV_UP): enP1p4s15f0: link is not ready
[   21.450488] IPv6: ADDRCONF(NETDEV_UP): enP1p7s4: link is not ready
[   21.588441] e100 0001:07:04.0: firmware: direct-loading firmware e100/d101m_ucode.bin
[   21.603082] IPv6: ADDRCONF(NETDEV_UP): enP1p7s4: link is not ready
[   25.043088] gem 0001:04:0f.0 enP1p4s15f0: Link is up at 1000 Mbps, full-duplex
[   25.043211] gem 0001:04:0f.0 enP1p4s15f0: Pause is disabled
[   25.043268] IPv6: ADDRCONF(NETDEV_CHANGE): enP1p4s15f0: link becomes ready
[   62.548980] FAT-fs (sdb1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   62.915048] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[   71.543743] mate-power-mana[794]: unhandled signal 11 at ff35fef0 nip 1ed54100 lr 1f0a7930 code 30002

[-- Attachment #3: lubuntu.dmesg --]
[-- Type: application/octet-stream, Size: 46550 bytes --]

[    0.000000] Allocated 2359296 bytes for 1024 pacas at c00000000fdc0000
[    0.000000] DART table allocated at: c00000007f000000
[    0.000000] Using PowerMac machine description
[    0.000000] Page orders: linear mapping = 24, virtual = 12, io = 12, vmemmap = 24
[    0.000000] cma: Reserved 208 MiB at 0x000000016f000000
[    0.000000] Found initrd at 0xc000000002900000:0xc000000004da8000
[    0.000000] Found U3 memory controller & host bridge @ 0xf8000000 revision: 0xb3
[    0.000000] Mapped at 0xd000080080000000
[    0.000000] Found a K2 mac-io controller, rev: 32, mapped at 0xd000080080041000
[    0.000000] PowerMac motherboard: PowerMac G5
[    0.000000] DART IOMMU initialized for U3 type chipset
[    0.000000] bootconsole [udbg0] enabled
[    0.000000] CPU maps initialized for 1 thread per core
[    0.000000]  (thread shift is 0)
[    0.000000] Freed 2351104 bytes for unused pacas
[    0.000000] Starting Linux ppc64 #55-Ubuntu SMP Fri Aug 26 06:18:46 UTC 2016
[    0.000000] -----------------------------------------------------
[    0.000000] ppc64_pft_size    = 0x0
[    0.000000] phys_mem_size     = 0x100000000
[    0.000000] cpu_features      = 0x0804806318100448
[    0.000000]   possible        = 0x1fffffef18500649
[    0.000000]   always          = 0x0000000018100040
[    0.000000] cpu_user_features = 0xdc080000 0x00000000
[    0.000000] mmu_features      = 0x0c000001
[    0.000000] firmware_features = 0x0000000000000000
[    0.000000] htab_address      = 0xc00000017c000000
[    0.000000] htab_hash_mask    = 0x7ffff
[    0.000000] -----------------------------------------------------
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 4.4.0-9136-powerpc64-smp (buildd@denneed03) (gcc version 5.4.1 20160803 (Ubuntu 5.4.1-1ubuntu2) ) #55-Ubuntu SMP Fri Aug 26 06:18:46 UTC 2016 (Ubuntu 4.4.0-9136.55-powerpc64-smp 4.4.16)
[    0.000000] Top of RAM: 0x180000000, Total RAM: 0x100000000
[    0.000000] Memory hole size: 2048MB
[    0.000000] numa: Initmem setup node 0 [mem 0x00000000-0x17fffffff]
[    0.000000] numa:   NODE_DATA [mem 0x16efc5b00-0x16efcffff]
[    0.000000] Found U3-AGP PCI host bridge.  Firmware bus number: 240->255
[    0.000000] PCI host bridge /pci@0,f0000000  ranges:
[    0.000000]  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
[    0.000000]   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
[    0.000000]  MEM 0x00000000a0000000..0x00000000bfffffff -> 0x00000000a0000000 
[    0.000000] Can't get bus-range for /ht@0,f2000000, assume bus 0
[    0.000000] Found U3-HT PCI host bridge.  Firmware bus number: 0->239
[    0.000000] PCI host bridge /ht@0,f2000000 (primary) ranges:
[    0.000000] via-pmu: Server Mode is disabled
[    0.000000] PMU driver v2 initialized for Core99, firmware: 0c
[    0.000000] nvram: Checking bank 0...
[    0.000000] nvram: gen0=891, gen1=890
[    0.000000] nvram: Active bank is: 0
[    0.000000] nvram: OF partition at 0x410
[    0.000000] nvram: XP partition at 0x1020
[    0.000000] nvram: NR partition at 0x1120
[    0.000000] Top of RAM: 0x180000000, Total RAM: 0x100000000
[    0.000000] Memory hole size: 2048MB
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000000000-0x000000017fffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000000000-0x000000007fffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000017fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000017fffffff]
[    0.000000] On node 0 totalpages: 1048576
[    0.000000]   DMA zone: 16384 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 1048576 pages, LIFO batch:31
[    0.000000] PERCPU: Embedded 26 pages/cpu @c00000016ee00000 s68248 r0 d38248 u524288
[    0.000000] pcpu-alloc: s68248 r0 d38248 u524288 alloc=1*1048576
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1032192
[    0.000000] Policy zone: DMA
[    0.000000] Kernel command line: root=UUID=1fcb24f9-00eb-4ef8-9b35-4a93a92e0a03 ro quiet splash 
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Sorting __ex_table...
[    0.000000] Memory: 3700464K/4194304K available (11152K kernel code, 2056K rwdata, 4480K rodata, 8668K init, 2402K bss, 280848K reserved, 212992K cma-reserved)
[    0.000000] SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=1024 to nr_cpu_ids=2.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=2
[    0.000000] NR_IRQS:512 nr_irqs:512 16
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 2 CPUs
[    0.000000] mpic: ISU size: 120, shift: 7, mask: 7f
[    0.000000] mpic: Initializing for 120 sources
[    0.000000] mpic: Resetting
[    0.000000] mpic: Setting up MPIC " MPIC 2   " version 1.2 at f8040000, max 2 CPUs
[    0.000000] mpic: ISU size: 120, shift: 7, mask: 7f
[    0.000000] mpic: Initializing for 120 sources
[    0.000000] /u3@0,f8000000/mpic@f8040000: hooking up to IRQ 56
[    0.000000] time_init: decrementer frequency = 33.333333 MHz
[    0.000000] time_init: processor frequency   = 2000.000000 MHz
[    0.000004] clocksource: timebase: mask: 0xffffffffffffffff max_cycles: 0x7b00c4bad, max_idle_ns: 440795202744 ns
[    0.000007] clocksource: timebase mult[1e000005] shift[24] registered
[    0.000012] clockevent: decrementer mult[8888887] shift[32] cpu[0]
[    0.000100] Console: colour dummy device 80x25
[    0.000106] console [tty0] enabled
[    0.000110] bootconsole [udbg0] disabled
[    0.000345] pid_max: default: 32768 minimum: 301
[    0.000387] Security Framework initialized
[    0.000392] Yama: becoming mindful.
[    0.000425] AppArmor: AppArmor initialized
[    0.001247] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.005594] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.007636] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.007655] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.008258] Initializing cgroup subsys io
[    0.008272] Initializing cgroup subsys memory
[    0.008290] Initializing cgroup subsys devices
[    0.008297] Initializing cgroup subsys freezer
[    0.008303] Initializing cgroup subsys net_cls
[    0.008309] Initializing cgroup subsys perf_event
[    0.008315] Initializing cgroup subsys net_prio
[    0.008321] Initializing cgroup subsys hugetlb
[    0.008330] Initializing cgroup subsys pids
[    0.008354] ftrace: allocating 29332 entries in 173 pages
[    0.032593] PowerMac SMP probe found 2 cpus
[    0.032752] KeyWest i2c @0xf8001003 irq 42 /u3@0,f8000000/i2c@f8001000
[    0.032758]  channel 0 bus <multibus>
[    0.032762]  channel 1 bus <multibus>
[    0.032820] KeyWest i2c @0x80018000 irq 26 /ht@0,f2000000/pci@3/mac-io@7/i2c@18000
[    0.032825]  channel 0 bus <multibus>
[    0.032860] PMU i2c /ht@0,f2000000/pci@3/mac-io@7/via-pmu@16000/pmu-i2c
[    0.032870]  channel 1 bus <multibus>
[    0.032874]  channel 2 bus <multibus>
[    0.032968] Processor timebase sync using Cypress i2c clock
[    0.032972] mpic: requesting IPIs...
[    0.033064] PPC970/FX/MP performance monitor hardware support registered
[    0.074132] Brought up 2 CPUs
[    0.074783] devtmpfs: initialized
[    0.138237] evm: security.selinux
[    0.138244] evm: security.SMACK64
[    0.138246] evm: security.SMACK64EXEC
[    0.138248] evm: security.SMACK64TRANSMUTE
[    0.138250] evm: security.SMACK64MMAP
[    0.138252] evm: security.ima
[    0.138255] evm: security.capability
[    0.138526] EEH: devices created
[    0.138699] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.142270] NET: Registered protocol family 16
[    0.142306] eeh_init: Platform EEH operation not found
[    0.154240] cpuidle: using governor ladder
[    0.166240] cpuidle: using governor menu
[    0.174658] PCI: Probing PCI hardware
[    0.174893] PCI host bridge to bus fc6c:f0
[    0.174902] pci_bus fc6c:f0: root bus resource [io  0x10000-0x80ffff] (bus address [0x0000-0x7fffff])
[    0.174906] pci_bus fc6c:f0: root bus resource [mem 0xf1000000-0xf1ffffff]
[    0.174910] pci_bus fc6c:f0: root bus resource [mem 0xa0000000-0xbfffffff]
[    0.174915] pci_bus fc6c:f0: root bus resource [bus f0-ff]
[    0.174922] pci_bus fc6c:f0: busn_res: [bus f0-ff] end is updated to ff
[    0.174950] pci fc6c:f0:0b.0: [106b:004b] type 00 class 0x060000
[    0.175134] pci fc6c:f0:10.0: [1002:4150] type 00 class 0x030000
[    0.175161] pci fc6c:f0:10.0: reg 0x10: [mem 0xb0000000-0xbfffffff pref]
[    0.175172] pci fc6c:f0:10.0: reg 0x14: [io  0x10400-0x104ff]
[    0.175182] pci fc6c:f0:10.0: reg 0x18: [mem 0xa0000000-0xa000ffff]
[    0.175212] pci fc6c:f0:10.0: reg 0x30: [mem 0xa0020000-0xa003ffff pref]
[    0.175240] pci fc6c:f0:10.0: supports D1 D2
[    0.210034] IOMMU table initialized, virtual merging enabled
[    0.210112] pci_bus fc6c:f0: busn_res: [bus f0-ff] end is updated to f0
[    0.210254] PCI host bridge to bus 7c70:00
[    0.210260] pci_bus 7c70:00: root bus resource [io  0x811000-0xc10fff] (bus address [0x0000-0x3fffff])
[    0.210264] pci_bus 7c70:00: root bus resource [mem 0xfa000000-0xffffffff]
[    0.210267] pci_bus 7c70:00: root bus resource [mem 0x80000000-0x9fffffff]
[    0.210271] pci_bus 7c70:00: root bus resource [mem 0xc0000000-0xefffffff]
[    0.210275] pci_bus 7c70:00: root bus resource [bus 00-ef]
[    0.210282] pci_bus 7c70:00: busn_res: [bus 00-ef] end is updated to ff
[    0.210306] pci 7c70:00:00.0: [106b:004a] type 00 class 0x060000
[    0.210436] pci 7c70:00:01.0: [1022:7450] type 01 class 0x060400
[    0.210569] pci 7c70:00:02.0: [1022:7450] type 01 class 0x060400
[    0.210710] pci 7c70:00:03.0: [106b:0045] type 01 class 0x060400
[    0.210856] pci 7c70:00:04.0: [106b:0046] type 01 class 0x060400
[    0.210992] pci 7c70:00:05.0: [106b:0047] type 01 class 0x060400
[    0.211130] pci 7c70:00:06.0: [106b:0048] type 01 class 0x060400
[    0.211268] pci 7c70:00:07.0: [106b:0049] type 01 class 0x060400
[    0.211497] pci 7c70:00:01.0: PCI bridge to [bus 06]
[    0.211584] pci 7c70:07:04.0: [8086:1229] type 00 class 0x020000
[    0.211606] pci 7c70:07:04.0: reg 0x10: [mem 0x90000000-0x90000fff]
[    0.211614] pci 7c70:07:04.0: reg 0x14: [io  0x811000-0x81103f]
[    0.211623] pci 7c70:07:04.0: reg 0x18: [mem 0x90200000-0x902fffff]
[    0.211644] pci 7c70:07:04.0: reg 0x30: [mem 0x90100000-0x901fffff pref]
[    0.211667] pci 7c70:07:04.0: supports D1 D2
[    0.211671] pci 7c70:07:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.211773] pci 7c70:00:02.0: PCI bridge to [bus 07]
[    0.211781] pci 7c70:00:02.0:   bridge window [io  0x811000-0x811fff]
[    0.211787] pci 7c70:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
[    0.211915] pci 7c70:01:07.0: [106b:0041] type 00 class 0xff0000
[    0.211932] pci 7c70:01:07.0: reg 0x10: [mem 0x80000000-0x8007ffff]
[    0.212064] pci 7c70:01:08.0: [106b:0040] type 00 class 0x0c0310
[    0.212080] pci 7c70:01:08.0: reg 0x10: [mem 0x80081000-0x80081fff]
[    0.212205] pci 7c70:01:09.0: [106b:0040] type 00 class 0x0c0310
[    0.212222] pci 7c70:01:09.0: reg 0x10: [mem 0x80080000-0x80080fff]
[    0.212341] pci 7c70:00:03.0: PCI bridge to [bus 01]
[    0.212352] pci 7c70:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.212358] pci 7c70:00:03.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.212502] pci 7c70:02:0b.0: [1033:0035] type 00 class 0x0c0310
[    0.212526] pci 7c70:02:0b.0: reg 0x10: [mem 0x80102000-0x80102fff]
[    0.212584] pci 7c70:02:0b.0: supports D1 D2
[    0.212587] pci 7c70:02:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.212696] pci 7c70:02:0b.1: [1033:0035] type 00 class 0x0c0310
[    0.212721] pci 7c70:02:0b.1: reg 0x10: [mem 0x80101000-0x80101fff]
[    0.212778] pci 7c70:02:0b.1: supports D1 D2
[    0.212782] pci 7c70:02:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.212888] pci 7c70:02:0b.2: [1033:00e0] type 00 class 0x0c0320
[    0.212913] pci 7c70:02:0b.2: reg 0x10: [mem 0x80100000-0x801000ff]
[    0.212969] pci 7c70:02:0b.2: supports D1 D2
[    0.212973] pci 7c70:02:0b.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.213073] pci 7c70:00:04.0: PCI bridge to [bus 02]
[    0.213085] pci 7c70:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
[    0.213091] pci 7c70:00:04.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.213221] pci 7c70:03:0d.0: [106b:0043] type 00 class 0xff0000
[    0.213235] pci 7c70:03:0d.0: reg 0x10: [mem 0x80204000-0x80207fff]
[    0.213364] pci 7c70:03:0e.0: [106b:0042] type 00 class 0x0c0010
[    0.213387] pci 7c70:03:0e.0: reg 0x10: [mem 0x80200000-0x80200fff]
[    0.213440] pci 7c70:03:0e.0: supports D1 D2
[    0.213444] pci 7c70:03:0e.0: PME# supported from D0 D1 D2 D3hot
[    0.213544] pci 7c70:00:05.0: PCI bridge to [bus 03]
[    0.213555] pci 7c70:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
[    0.213561] pci 7c70:00:05.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.213684] pci 7c70:04:0f.0: [106b:004c] type 00 class 0x020000
[    0.213702] pci 7c70:04:0f.0: reg 0x10: [mem 0x80400000-0x805fffff]
[    0.213741] pci 7c70:04:0f.0: reg 0x30: [mem 0x80300000-0x803fffff pref]
[    0.213832] pci 7c70:00:06.0: PCI bridge to [bus 04]
[    0.213843] pci 7c70:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
[    0.213849] pci 7c70:00:06.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.213954] pci 7c70:05:0c.0: [1166:0240] type 00 class 0x01018f
[    0.213971] pci 7c70:05:0c.0: reg 0x10: [io  0x811000-0x811007]
[    0.213980] pci 7c70:05:0c.0: reg 0x14: [io  0x811000-0x811003]
[    0.213989] pci 7c70:05:0c.0: reg 0x18: [io  0x811000-0x811007]
[    0.213998] pci 7c70:05:0c.0: reg 0x1c: [io  0x811000-0x811003]
[    0.214007] pci 7c70:05:0c.0: reg 0x20: [io  0x811000-0x81100f]
[    0.214016] pci 7c70:05:0c.0: reg 0x24: [mem 0x80600000-0x80601fff]
[    0.214118] pci 7c70:00:07.0: PCI bridge to [bus 05]
[    0.214129] pci 7c70:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
[    0.214136] pci 7c70:00:07.0:   bridge window [mem 0x00000000-0x000fffff pref]
[    0.214188] pci_bus 7c70:00: busn_res: [bus 00-ff] end is updated to 07
[    0.214338] PCI fc6c:f0 Cannot reserve Legacy IO [io  0x10000-0x10fff]
[    0.214342] PCI 7c70:00 Cannot reserve Legacy IO [io  0x811000-0x811fff]
[    0.214373] pci_bus fc6c:f0: resource 4 [io  0x10000-0x80ffff]
[    0.214377] pci_bus fc6c:f0: resource 5 [mem 0xf1000000-0xf1ffffff]
[    0.214381] pci_bus fc6c:f0: resource 6 [mem 0xa0000000-0xbfffffff]
[    0.214427] pci 7c70:00:01.0: PCI bridge to [bus 06]
[    0.214438] pci 7c70:07:04.0: BAR 1: assigned [io  0x811000-0x81103f]
[    0.214444] pci 7c70:00:02.0: PCI bridge to [bus 07]
[    0.214449] pci 7c70:00:02.0:   bridge window [io  0x811000-0x811fff]
[    0.214454] pci 7c70:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
[    0.214460] pci 7c70:00:03.0: PCI bridge to [bus 01]
[    0.214465] pci 7c70:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
[    0.214471] pci 7c70:00:04.0: PCI bridge to [bus 02]
[    0.214476] pci 7c70:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
[    0.214482] pci 7c70:00:05.0: PCI bridge to [bus 03]
[    0.214486] pci 7c70:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
[    0.214492] pci 7c70:00:06.0: PCI bridge to [bus 04]
[    0.214497] pci 7c70:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
[    0.214503] pci 7c70:00:07.0: PCI bridge to [bus 05]
[    0.214507] pci 7c70:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
[    0.214514] pci_bus 7c70:00: resource 4 [io  0x811000-0xc10fff]
[    0.214517] pci_bus 7c70:00: resource 5 [mem 0xfa000000-0xffffffff]
[    0.214521] pci_bus 7c70:00: resource 6 [mem 0x80000000-0x9fffffff]
[    0.214525] pci_bus 7c70:00: resource 7 [mem 0xc0000000-0xefffffff]
[    0.214528] pci_bus 7c70:07: resource 0 [io  0x811000-0x811fff]
[    0.214532] pci_bus 7c70:07: resource 1 [mem 0x90000000-0x902fffff]
[    0.214536] pci_bus 7c70:01: resource 1 [mem 0x80000000-0x800fffff]
[    0.214540] pci_bus 7c70:02: resource 1 [mem 0x80100000-0x801fffff]
[    0.214544] pci_bus 7c70:03: resource 1 [mem 0x80200000-0x802fffff]
[    0.214547] pci_bus 7c70:04: resource 1 [mem 0x80300000-0x805fffff]
[    0.214551] pci_bus 7c70:05: resource 1 [mem 0x80600000-0x806fffff]
[    0.214554] PCI: Probing PCI hardware done
[    0.231613] vgaarb: device added: PCI:fc6c:f0:10.0,decodes=io+mem,owns=mem,locks=none
[    0.231649] vgaarb: loaded
[    0.231651] vgaarb: bridge control possible fc6c:f0:10.0
[    0.232296] SCSI subsystem initialized
[    0.232442] libata version 3.00 loaded.
[    0.232554] usbcore: registered new interface driver usbfs
[    0.232575] usbcore: registered new interface driver hub
[    0.232609] usbcore: registered new device driver usb
[    0.233328] NetLabel: Initializing
[    0.233333] NetLabel:  domain hash size = 128
[    0.233335] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.233360] NetLabel:  unlabeled traffic allowed by default
[    0.233565] clocksource: Switched to clocksource timebase
[    0.254981] AppArmor: AppArmor Filesystem Enabled
[    0.260634] NET: Registered protocol family 2
[    0.261107] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.261400] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.262214] TCP: Hash tables configured (established 32768 bind 32768)
[    0.262312] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.262392] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.262645] NET: Registered protocol family 1
[    0.262687] PCI: CLS mismatch (32 != 64), using 128 bytes
[    0.262698] pci 7c70:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.262703] pci 7c70:00:01.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
[    0.262709] pci 7c70:00:02.0: MSI quirk detected; subordinate MSI disabled
[    0.262713] pci 7c70:00:02.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
[    0.262756] pci 7c70:01:08.0: enabling device (0000 -> 0002)
[    0.317624] pci 7c70:01:09.0: enabling device (0000 -> 0002)
[    0.373587] pci 7c70:02:0b.0: enabling device (0000 -> 0002)
[    0.429580] pci 7c70:02:0b.1: enabling device (0000 -> 0002)
[    0.485579] pci 7c70:02:0b.2: enabling device (0004 -> 0006)
[    0.485744] Trying to unpack rootfs image as initramfs...
[    1.649254] Freeing initrd memory: 37536K (c000000002900000 - c000000004da8000)
[    1.666073] futex hash table entries: 512 (order: 4, 65536 bytes)
[    1.666175] audit: initializing netlink subsys (disabled)
[    1.666228] audit: type=2000 audit(1474239551.611:1): initialized
[    1.666539] Initialise system trusted keyring
[    1.666889] HugeTLB registered 16 MB page size, pre-allocated 0 pages
[    1.670761] zbud: loaded
[    1.671278] VFS: Disk quotas dquot_6.6.0
[    1.671369] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.672107] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.672612] fuse init (API version 7.23)
[    1.672968] Key type big_key registered
[    1.673018] Allocating IMA MOK and blacklist keyrings.
[    1.674039] Key type asymmetric registered
[    1.674049] Asymmetric key parser 'x509' registered
[    1.674170] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    1.674250] io scheduler noop registered
[    1.674256] io scheduler deadline registered (default)
[    1.674339] io scheduler cfq registered
[    1.674674] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.674689] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.674852] Using unsupported 1920x1080 ATY,Simone_A at b8008000, depth=8, pitch=2048
[    1.716291] Console: switching to colour frame buffer device 240x67
[    1.757055] fb0: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_A@0
[    1.757111] Using unsupported 640x480 ATY,Simone_B at b2008000, depth=8, pitch=768
[    1.757140] checking generic (b8008000 21c000) vs hw (b2008000 5a000)
[    1.757317] fb1: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_B@1
[    1.758185] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.761234] pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
[    1.761519] Linux agpgart interface v0.103
[    1.768913] brd: module loaded
[    1.772261] loop: module loaded
[    1.772614] MacIO PCI driver attached to K2 chipset
[    1.773484] 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    1.774023] 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
[    1.774513] sata_svw 7c70:05:0c.0: version 2.3
[    1.775598] scsi host0: sata_svw
[    1.775851] scsi host1: sata_svw
[    1.776057] scsi host2: sata_svw
[    1.776264] scsi host3: sata_svw
[    1.776375] ata1: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600000 irq 16
[    1.776381] ata2: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600100 irq 16
[    1.776385] ata3: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600200 irq 16
[    1.776390] ata4: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600300 irq 16
[    1.776491] pata-pci-macio 7c70:03:0d.0: enabling device (0014 -> 0016)
[    1.789583] pata-pci-macio 7c70:03:0d.0: Activating pata-macio chipset K2 ATA-6, Apple bus ID 3
[    1.790127] scsi host4: pata_macio
[    1.790251] ata5: PATA max UDMA/100 irq 39
[    1.790500] libphy: Fixed MDIO Bus: probed
[    1.790506] tun: Universal TUN/TAP device driver, 1.6
[    1.790508] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.790653] PPP generic driver version 2.4.2
[    1.790817] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.790859] ehci-pci: EHCI PCI platform driver
[    1.790973] ehci-pci 7c70:02:0b.2: EHCI Host Controller
[    1.790986] ehci-pci 7c70:02:0b.2: new USB bus registered, assigned bus number 1
[    1.791093] ehci-pci 7c70:02:0b.2: irq 63, io mem 0x80100000
[    1.801578] ehci-pci 7c70:02:0b.2: USB 2.0 started, EHCI 1.00
[    1.801713] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.801718] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.801721] usb usb1: Product: EHCI Host Controller
[    1.801725] usb usb1: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ehci_hcd
[    1.801728] usb usb1: SerialNumber: 7c70:02:0b.2
[    1.802015] hub 1-0:1.0: USB hub found
[    1.802034] hub 1-0:1.0: 5 ports detected
[    1.802523] ehci-platform: EHCI generic platform driver
[    1.802570] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.802610] ohci-pci: OHCI PCI platform driver
[    1.802668] ohci-pci 7c70:01:08.0: OHCI PCI host controller
[    1.802680] ohci-pci 7c70:01:08.0: new USB bus registered, assigned bus number 2
[    1.802762] ohci-pci 7c70:01:08.0: irq 27, io mem 0x80081000
[    1.877495] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.877500] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.877504] usb usb2: Product: OHCI PCI host controller
[    1.877507] usb usb2: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
[    1.877511] usb usb2: SerialNumber: 7c70:01:08.0
[    1.877808] hub 2-0:1.0: USB hub found
[    1.877828] hub 2-0:1.0: 2 ports detected
[    1.878108] ohci-pci 7c70:01:09.0: OHCI PCI host controller
[    1.878121] ohci-pci 7c70:01:09.0: new USB bus registered, assigned bus number 3
[    1.878205] ohci-pci 7c70:01:09.0: irq 28, io mem 0x80080000
[    1.953496] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.953501] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.953505] usb usb3: Product: OHCI PCI host controller
[    1.953509] usb usb3: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
[    1.953512] usb usb3: SerialNumber: 7c70:01:09.0
[    1.953810] hub 3-0:1.0: USB hub found
[    1.953835] hub 3-0:1.0: 2 ports detected
[    1.954022] ata5.00: ATAPI: HL-DT-ST RW/DVD GCC-4480B, 1.03, max UDMA/33
[    1.954114] ohci-pci 7c70:02:0b.0: OHCI PCI host controller
[    1.954130] ohci-pci 7c70:02:0b.0: new USB bus registered, assigned bus number 4
[    1.954188] ohci-pci 7c70:02:0b.0: irq 63, io mem 0x80102000
[    1.969964] ata5.00: configured for UDMA/33
[    2.029490] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.029495] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.029498] usb usb4: Product: OHCI PCI host controller
[    2.029502] usb usb4: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
[    2.029505] usb usb4: SerialNumber: 7c70:02:0b.0
[    2.029800] hub 4-0:1.0: USB hub found
[    2.029820] hub 4-0:1.0: 3 ports detected
[    2.030143] ohci-pci 7c70:02:0b.1: OHCI PCI host controller
[    2.030156] ohci-pci 7c70:02:0b.1: new USB bus registered, assigned bus number 5
[    2.030215] ohci-pci 7c70:02:0b.1: irq 63, io mem 0x80101000
[    2.105456] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.105682] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.105686] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.105690] usb usb5: Product: OHCI PCI host controller
[    2.105693] usb usb5: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
[    2.105697] usb usb5: SerialNumber: 7c70:02:0b.1
[    2.105987] hub 5-0:1.0: USB hub found
[    2.106006] hub 5-0:1.0: 2 ports detected
[    2.106344] ohci-platform: OHCI generic platform driver
[    2.106395] uhci_hcd: USB Universal Host Controller Interface driver
[    2.106872] mousedev: PS/2 mouse device common for all mice
[    2.106989] i2c /dev entries driver
[    2.107205] PowerMac i2c bus pmu 2 registered
[    2.107366] PowerMac i2c bus pmu 1 registered
[    2.107541] PowerMac i2c bus mac-io 0 registered
[    2.107646] i2c i2c-2: No i2c address for /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/i2c-modem
[    2.108149] PowerMac i2c bus u3 1 registered
[    2.108268] i2c i2c-3: i2c-powermac: modalias failure on /u3@0,f8000000/i2c@f8001000/cereal@1c0
[    2.108721] PowerMac i2c bus u3 0 registered
[    2.109956] device-mapper: uevent: version 1.0.3
[    2.110160] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    2.114171] ata1.00: ATA-6: ST3160023AS, 3.05, max UDMA/133
[    2.114176] ata1.00: 312581808 sectors, multi 16: LBA48 
[    2.130344] ata1.00: configured for UDMA/133
[    2.130627] scsi 0:0:0:0: Direct-Access     ATA      ST3160023AS      3.05 PQ: 0 ANSI: 5
[    2.131037] sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
[    2.131085] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.131144] sd 0:0:0:0: [sda] Write Protect is off
[    2.131150] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.131213] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.143207]  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
[    2.144592] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.145775] Registering G5 CPU frequency driver
[    2.145782] Frequency method: i2c/pfunc, Voltage method: i2c/pfunc
[    2.145785] Low: 1304 Mhz, High: 2000 Mhz, Cur: 2000 MHz
[    2.145952] ledtrig-cpu: registered to indicate activity on CPUs
[    2.146498] NET: Registered protocol family 10
[    2.146976] NET: Registered protocol family 17
[    2.147018] Key type dns_resolver registered
[    2.147100] PM: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
[    2.147527] registered taskstats version 1
[    2.147557] Loading compiled-in X.509 certificates
[    2.149528] Loaded X.509 cert 'Build time autogenerated kernel key: 7d7f518658e77f47db84ef4aad2a1e9f2f0cfe65'
[    2.149630] zswap: loaded using pool lzo/zbud
[    2.157069] Key type trusted registered
[    2.169925] Key type encrypted registered
[    2.169949] AppArmor: AppArmor sha1 policy hashing enabled
[    2.169959] ima: No TPM chip found, activating TPM-bypass!
[    2.170022] evm: HMAC attrs: 0x1
[    2.170589] input: PMU as /devices/virtual/input/input0
[    2.170771] hctosys: unable to open rtc device (rtc0)
[    2.171373] PM: Hibernation image not present or could not be loaded.
[    2.405575] usb 4-1: new low-speed USB device number 2 using ohci-pci
[    2.460644] ata2: SATA link down (SStatus 4 SControl 300)
[    2.481571] usb 5-2: new full-speed USB device number 2 using ohci-pci
[    2.614617] usb 4-1: New USB device found, idVendor=0461, idProduct=4d81
[    2.614623] usb 4-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.614627] usb 4-1: Product: USB Optical Mouse
[    2.694618] usb 5-2: New USB device found, idVendor=413c, idProduct=1005
[    2.694625] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.694628] usb 5-2: Product: Dell Multimedia Pro Keyboard Hub
[    2.694631] usb 5-2: Manufacturer: Dell
[    2.703635] hub 5-2:1.0: USB hub found
[    2.706615] hub 5-2:1.0: 3 ports detected
[    2.788637] ata3: SATA link down (SStatus 4 SControl 300)
[    3.009577] usb 5-2.1: new low-speed USB device number 3 using ohci-pci
[    3.116636] ata4: SATA link down (SStatus 4 SControl 300)
[    3.117428] scsi 4:0:0:0: CD-ROM            HL-DT-ST RW/DVD GCC-4480B 1.03 PQ: 0 ANSI: 5
[    3.117448] ata5.00: K2/Shasta alignment limits applied
[    3.134375] sr 4:0:0:0: [sr0] scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[    3.134383] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.134703] sr 4:0:0:0: Attached scsi CD-ROM sr0
[    3.134930] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.142528] Freeing unused kernel memory: 8668K (c000000000f4c000 - c0000000017c3000)
[    3.142583] usb 5-2.1: New USB device found, idVendor=413c, idProduct=2011
[    3.142588] usb 5-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.142592] usb 5-2.1: Product: Dell Multimedia Pro Keyboard
[    3.142595] usb 5-2.1: Manufacturer: Dell
[    3.189950] random: systemd-udevd urandom read with 25 bits of entropy available
[    3.335483] agpgart-uninorth fc6c:f0:0b.0: Apple U3 chipset
[    3.340225] agpgart-uninorth fc6c:f0:0b.0: configuring for size idx: 64
[    3.340415] agpgart-uninorth fc6c:f0:0b.0: AGP aperture is 256M @ 0x0
[    3.375526] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    3.375533] e100: Copyright(c) 1999-2006 Intel Corporation
[    3.375616] e100 7c70:07:04.0: enabling device (0004 -> 0007)
[    3.439868] hidraw: raw HID events driver (C) Jiri Kosina
[    3.451808] sungem.c:v1.0 David S. Miller <davem@redhat.com>
[    3.454271] gem 7c70:04:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:0a:95:bb:30:6c
[    3.460023] e100 7c70:07:04.0 eth1: addr 0x90000000, irq 54, MAC addr 00:0e:0c:07:b3:47
[    3.461347] firewire_ohci 7c70:03:0e.0: enabling device (0000 -> 0002)
[    3.473110] [drm] Initialized drm 1.1.0 20060810
[    3.481129] usbcore: registered new interface driver usbhid
[    3.481139] usbhid: USB HID core driver
[    3.496093] rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
[    3.513697] firewire_ohci 7c70:03:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
[    3.608190] [drm] radeon kernel modesetting enabled.
[    3.608295] checking generic (b8008000 21c000) vs hw (b0000000 10000000)
[    3.608298] fb: switching to radeondrmfb from OFfb ATY,Simone
[    3.608370] Console: switching to colour dummy device 80x25
[    3.608948] checking generic (b2008000 5a000) vs hw (b0000000 10000000)
[    3.608951] fb: switching to radeondrmfb from OFfb ATY,Simone
[    3.609295] radeon fc6c:f0:10.0: enabling device (0006 -> 0007)
[    3.609869] [drm] initializing kernel modesetting (RV350 0x1002:0x4150 0x1002:0x4150).
[    3.609898] [drm] register mmio base: 0xA0000000
[    3.609900] [drm] register mmio size: 65536
[    3.609960] radeon fc6c:f0:10.0: Invalid ROM contents
[    3.699455] [drm] Not an x86 BIOS ROM, not using.
[    3.699504] [drm] Using device-tree clock info
[    3.699554] agpgart-uninorth fc6c:f0:0b.0: putting AGP V3 device into 8x mode
[    3.699563] radeon fc6c:f0:10.0: putting AGP V3 device into 8x mode
[    3.699663] radeon fc6c:f0:10.0: GTT: 256M 0x00000000 - 0x0FFFFFFF
[    3.699672] [drm] Generation 2 PCI interface, using max accessible memory
[    3.699678] radeon fc6c:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
[    3.699726] [drm] Detected VRAM RAM=256M, BAR=256M
[    3.699729] [drm] RAM width 128bits DDR
[    3.699921] [TTM] Zone  kernel: Available graphics memory: 2013316 kiB
[    3.699930] [TTM] Initializing pool allocator
[    3.699942] [TTM] Initializing DMA pool allocator
[    3.700040] [drm] radeon: 64M of VRAM memory ready
[    3.700044] [drm] radeon: 256M of GTT memory ready.
[    3.700130] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[    3.700377] radeon fc6c:f0:10.0: WB disabled
[    3.700392] radeon fc6c:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000000000000 and cpu addr 0xd0000000012f0000
[    3.700406] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.700408] [drm] Driver supports precise vblank timestamp query.
[    3.700458] [drm] radeon: irq initialized.
[    3.700475] [drm] Loading R300 Microcode
[    3.701034] [drm] radeon: ring at 0x0000000000001000
[    3.701068] [drm] ring test succeeded in 0 usecs
[    3.701764] [drm] ib test succeeded in 0 usecs
[    3.706591] [drm] Connector Table: 12 (mac g5 9600)
[    3.706615] [drm] No valid Ext TMDS info found in BIOS
[    3.706626] [drm] No TV DAC info found in BIOS
[    3.706791] [drm] No TMDS info found in BIOS
[    3.706961] [drm] Radeon Display Connectors
[    3.706963] [drm] Connector 0:
[    3.706965] [drm]   DVI-I-1
[    3.706968] [drm]   HPD1
[    3.706970] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[    3.706973] [drm]   Encoders:
[    3.706975] [drm]     DFP2: INTERNAL_DVO1
[    3.706977] [drm]     CRT2: INTERNAL_DAC2
[    3.706979] [drm] Connector 1:
[    3.706981] [drm]   DVI-I-2
[    3.706982] [drm]   HPD2
[    3.706985] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[    3.706987] [drm]   Encoders:
[    3.706989] [drm]     DFP1: INTERNAL_TMDS1
[    3.706991] [drm]     CRT1: INTERNAL_DAC1
[    3.706993] [drm] Connector 2:
[    3.706995] [drm]   SVIDEO-1
[    3.706996] [drm]   Encoders:
[    3.706999] [drm]     TV1: INTERNAL_DAC2
[    3.794139] [drm] fb mappable at 0xB0040000
[    3.794147] [drm] vram apper at 0xB0000000
[    3.794149] [drm] size 8294400
[    3.794151] [drm] fb depth is 24
[    3.794153] [drm]    pitch is 7680
[    3.848976] Console: switching to colour frame buffer device 240x67
[    3.889349] radeon fc6c:f0:10.0: fb0: radeondrmfb frame buffer device
[    3.897594] [drm] Initialized radeon 2.43.0 20080528 for fc6c:f0:10.0 on minor 0
[    3.960313] e100 7c70:07:04.0 enP31856p7s4: renamed from eth1
[    3.962742] input: USB Optical Mouse as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.0/usb4/4-1/4-1:1.0/0003:0461:4D81.0001/input/input1
[    3.964689] hid-generic 0003:0461:4D81.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-7c70:02:0b.0-1/input0
[    3.965156] input: Dell Dell Multimedia Pro Keyboard as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.0/0003:413C:2011.0002/input/input2
[    3.974498] gem 7c70:04:0f.0 enP31856p4s15f0: renamed from eth0
[    4.013984] firewire_core 7c70:03:0e.0: created device fw0: GUID 000a95fffebb306c, S800
[    4.017925] hid-generic 0003:413C:2011.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell Multimedia Pro Keyboard] on usb-7c70:02:0b.1-2.1/input0
[    4.021805] input: Dell Dell Multimedia Pro Keyboard as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.1/0003:413C:2011.0003/input/input3
[    4.077911] hid-generic 0003:413C:2011.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell Multimedia Pro Keyboard] on usb-7c70:02:0b.1-2.1/input1
[    4.634084] random: nonblocking pool is initialized
[    8.772281] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
[    9.963308] ip_tables: (C) 2000-2006 Netfilter Core Team
[   10.313227] systemd[1]: systemd 231 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
[   10.313480] systemd[1]: Detected architecture ppc64.
[   10.325935] systemd[1]: Set hostname to <Lubuntu-G5>.
[   12.053945] systemd[1]: Created slice User and Session Slice.
[   12.054164] systemd[1]: Reached target Remote File Systems.
[   12.054338] systemd[1]: Listening on udev Control Socket.
[   12.054595] systemd[1]: Listening on Journal Audit Socket.
[   12.054746] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   12.055179] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   12.055357] systemd[1]: Listening on Syslog Socket.
[   12.055395] systemd[1]: Reached target User and Group Name Lookups.
[   12.055527] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   12.055619] systemd[1]: Listening on fsck to fsckd communication Socket.
[   12.055649] systemd[1]: Reached target Encrypted Volumes.
[   12.056001] systemd[1]: Created slice System Slice.
[   12.056408] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   12.056458] systemd[1]: Reached target Slices.
[   12.056809] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   12.056965] systemd[1]: Listening on Journal Socket (/dev/log).
[   12.057057] systemd[1]: Listening on udev Kernel Socket.
[   12.057191] systemd[1]: Listening on Journal Socket.
[   12.069881] systemd[1]: Starting Nameserver information manager...
[   12.071975] systemd[1]: Mounting Huge Pages File System...
[   12.134070] systemd[1]: Starting Set the console keyboard layout...
[   12.136390] systemd[1]: Starting Journal Service...
[   12.258072] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   12.260282] systemd[1]: Starting Uncomplicated firewall...
[   12.262511] systemd[1]: Mounting Debug File System...
[   12.338073] systemd[1]: Starting Load Kernel Modules...
[   12.340316] systemd[1]: Mounting POSIX Message Queue File System...
[   12.342535] systemd[1]: Started Read required files in advance.
[   12.463454] systemd[1]: Started Create list of required static device nodes for the current kernel.
[   12.474304] systemd[1]: Starting Create Static Device Nodes in /dev...
[   12.515737] systemd[1]: Started Uncomplicated firewall.
[   12.640644] systemd[1]: Started Journal Service.
[   13.144726] lp: driver loaded but no devices found
[   13.196770] ppdev: user-space parallel port driver
[   14.784162] EXT4-fs (sda9): re-mounted. Opts: errors=remount-ro
[   14.816541] snd-aoa-fabric-layout: Using PMF GPIOs
[   14.898981] snd-aoa-fabric-layout: can use this codec
[   14.965387] snd-aoa-codec-tas: tas found, addr 0x35 on /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/deq@6a
[   14.977940] systemd-journald[211]: Received request to flush runtime journal from PID 1
[   15.627353] snd-powermac no longer handles any machines with a layout-id property in the device-tree, use snd-aoa.
[   15.627368] Attempt to iounmap early bolted mapping at 0x          (null)
[   15.627371] Attempt to iounmap early bolted mapping at 0x          (null)
[   15.627373] Attempt to iounmap early bolted mapping at 0x          (null)
[   15.627375] Attempt to iounmap early bolted mapping at 0x          (null)
[   15.627378] Attempt to iounmap early bolted mapping at 0x          (null)
[   15.681759] shpchp 7c70:00:01.0: HPC vendor_id 1022 device_id 7450 ss_vid 0 ss_did 0
[   15.681784] shpchp 7c70:00:01.0: Cannot reserve MMIO region
[   15.681989] shpchp 7c70:00:02.0: HPC vendor_id 1022 device_id 7450 ss_vid 0 ss_did 0
[   15.681993] shpchp 7c70:00:02.0: Cannot reserve MMIO region
[   15.682287] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   15.728687] EDAC MC: Ver: 3.0.0
[   15.750438] AMD8131 EDAC driver  Ver: 1.0.0
[   15.750445] 	(c) 2008 Wind River Systems, Inc.
[   15.750540] EDAC PCI0: Giving out device to module amd8131_edac controller AMD8131_PCIX_NORTH_A: DEV 7c70:00:01.0 (POLLED)
[   15.750544] added one device on AMD8131 vendor 1022, device 7451, devfn 8, name AMD8131_PCIX_NORTH_A
[   15.750587] EDAC PCI1: Giving out device to module amd8131_edac controller AMD8131_PCIX_NORTH_B: DEV 7c70:00:02.0 (POLLED)
[   15.750590] added one device on AMD8131 vendor 1022, device 7451, devfn 10, name AMD8131_PCIX_NORTH_B
[   15.974757] windfarm: Initializing for desktop G5 with 2 chips
[   16.060886] windfarm: CPUs control loops started.
[   16.060925] wf_pm72: Backside control loop started.
[   16.060928] wf_pm72: Drive bay control loop started.
[   18.572113] Adding 3145724k swap on /dev/sda3.  Priority:-1 extents:1 across:3145724k FS
[   18.573093] Adding 1999996k swap on /dev/sda7.  Priority:-2 extents:1 across:1999996k FS
[   22.279495] EXT4-fs (sda8): mounting ext2 file system using the ext4 subsystem
[   22.296256] EXT4-fs (sda8): mounted filesystem without journal. Opts: (null)
[   23.709997] audit: type=1400 audit(1474239573.655:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=588 comm="apparmor_parser"
[   23.710022] audit: type=1400 audit(1474239573.655:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=588 comm="apparmor_parser"
[   23.710036] audit: type=1400 audit(1474239573.655:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=588 comm="apparmor_parser"
[   23.710049] audit: type=1400 audit(1474239573.655:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=588 comm="apparmor_parser"
[   23.737200] audit: type=1400 audit(1474239573.679:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=587 comm="apparmor_parser"
[   23.737227] audit: type=1400 audit(1474239573.679:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=587 comm="apparmor_parser"
[   23.758369] audit: type=1400 audit(1474239573.703:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=591 comm="apparmor_parser"
[   23.773534] audit: type=1400 audit(1474239573.715:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=592 comm="apparmor_parser"
[   23.773639] audit: type=1400 audit(1474239573.719:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=592 comm="apparmor_parser"
[   23.773652] audit: type=1400 audit(1474239573.719:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=592 comm="apparmor_parser"
[   26.326143] systemd[1]: snapd.refresh.timer: Adding 3h 51min 46.280588s random time.
[   26.326168] systemd[1]: snapd.refresh.timer: Adding 2h 58min 48.774299s random time.
[   26.326708] systemd[1]: apt-daily.timer: Adding 11h 37min 53.975019s random time.
[   26.699604] systemd[1]: snapd.refresh.timer: Adding 5h 52min 45.086984s random time.
[   26.699634] systemd[1]: snapd.refresh.timer: Adding 4h 23min 12.038297s random time.
[   26.700139] systemd[1]: apt-daily.timer: Adding 8h 31min 25.737985s random time.
[   32.636743] IPv6: ADDRCONF(NETDEV_UP): enP31856p4s15f0: link is not ready
[   32.685899] sungem_phy: PHY ID: 2062e0, addr: 1
[   32.686163] gem 7c70:04:0f.0 enP31856p4s15f0: Found BCM5421-K2 PHY
[   32.686470] IPv6: ADDRCONF(NETDEV_UP): enP31856p4s15f0: link is not ready
[   32.709268] IPv6: ADDRCONF(NETDEV_UP): enP31856p7s4: link is not ready
[   33.069731] IPv6: ADDRCONF(NETDEV_UP): enP31856p7s4: link is not ready
[   35.093729] gem 7c70:04:0f.0 enP31856p4s15f0: Link is up at 1000 Mbps, full-duplex
[   35.093862] gem 7c70:04:0f.0 enP31856p4s15f0: Pause is disabled
[   35.093927] IPv6: ADDRCONF(NETDEV_CHANGE): enP31856p4s15f0: link becomes ready
[   37.624666] systemd[1]: snapd.refresh.timer: Adding 29min 44.850589s random time.
[   37.624695] systemd[1]: snapd.refresh.timer: Adding 1h 18min 49.328219s random time.
[   37.625232] systemd[1]: apt-daily.timer: Adding 10h 44min 16.436763s random time.
[   38.127142] systemd[1]: snapd.refresh.timer: Adding 2h 41min 11.434888s random time.
[   38.127168] systemd[1]: snapd.refresh.timer: Adding 1h 30min 57.760996s random time.
[   38.127659] systemd[1]: apt-daily.timer: Adding 11h 48min 24.718844s random time.
[  158.327715] usb 1-3: new high-speed USB device number 4 using ehci-pci
[  158.537941] usb 1-3: New USB device found, idVendor=111d, idProduct=0000
[  158.537950] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  158.537954] usb 1-3: SerialNumber: 11110758000481
[  158.591822] usb-storage 1-3:1.0: USB Mass Storage device detected
[  158.592120] scsi host5: usb-storage 1-3:1.0
[  158.593584] usbcore: registered new interface driver usb-storage
[  158.601462] usbcore: registered new interface driver uas
[  159.751509] scsi 5:0:0:0: Direct-Access     CENTON   DS Pro                PQ: 0 ANSI: 0 CCS
[  159.752748] sd 5:0:0:0: Attached scsi generic sg2 type 0
[  159.753603] sd 5:0:0:0: [sdb] 7843840 512-byte logical blocks: (4.02 GB/3.74 GiB)
[  159.754339] sd 5:0:0:0: [sdb] Write Protect is off
[  159.754345] sd 5:0:0:0: [sdb] Mode Sense: 43 00 00 00
[  159.755088] sd 5:0:0:0: [sdb] No Caching mode page found
[  159.755094] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[  159.760446]  sdb: sdb1
[  159.763345] sd 5:0:0:0: [sdb] Attached SCSI removable disk
[  160.448847] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-19  9:13         ` Herminio Hernandez, Jr.
@ 2016-09-19 10:38           ` Benjamin Herrenschmidt
  2016-09-19 19:30             ` Herminio Hernandez, Jr.
  2016-09-19 12:36           ` Mathieu Malaterre
  1 sibling, 1 reply; 33+ messages in thread
From: Benjamin Herrenschmidt @ 2016-09-19 10:38 UTC (permalink / raw)
  To: Herminio Hernandez, Jr., Mike
  Cc: Pranith Kumar, open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V, debian-powerpc

On Mon, 2016-09-19 at 02:13 -0700, Herminio Hernandez, Jr. wrote:
> 
> I noticed the GPU was set to PCI mode however I did not set
> radeon.agpmode=-1 in yaboot. I then installed Lubuntu 16.10 along
> side Debian. I noticed that GPU was working and it was not set to
> force PCI mode. Has there been a change to kernel in Debian to force
> this by default? If so it looks like it is breaking on certain G5
> machines. I am attaching bothe dmesg files for review.
> 
> Thanks and sorry for the previous garbled email.

Hrm... this is odd. I would expect PCI mode to work and AGP to be
busted to be honest. Can you provide the complete log ? I wonder
if it's trying to enable the PCIe bypass high aperture and hits the
Radeon address limit...

Ben.

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-19  9:13         ` Herminio Hernandez, Jr.
  2016-09-19 10:38           ` Benjamin Herrenschmidt
@ 2016-09-19 12:36           ` Mathieu Malaterre
  2016-09-20  3:05             ` Michel Dänzer
  1 sibling, 1 reply; 33+ messages in thread
From: Mathieu Malaterre @ 2016-09-19 12:36 UTC (permalink / raw)
  To: Herminio Hernandez, Jr.
  Cc: Benjamin Herrenschmidt, Mike, Pranith Kumar, debian-powerpc,
	open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V

Hi,

On Mon, Sep 19, 2016 at 11:13 AM, Herminio Hernandez, Jr.
<herminio.hernandezjr@gmail.com> wrote:
> Apologies for the previous email.
>
> What I was trying to say was I just recently installed Debain on my PowerMac
> G5. I upgraded to sid and install the nonfree firmware. After reboot I
> noticed that GPU acclleration was broken and I recieved the following error
>
> [   10.428542] [drm] Loading R300 Microcode
> [   10.486631] radeon 0000:f0:10.0: firmware: direct-loading firmware
> radeon/R300_cp.bin
> [   10.486865] [drm] radeon: ring at 0x0000000000010000
> [   10.634417] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
> failed (scratch(0x15E4)=0xCAFEDEAD)
> [   10.634526] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't working
[...]
> [   11.935061] [drm] Forcing AGP to PCI mode

Well that is really odd. I am trying hard to push my pci patch upstream:

https://patchwork.kernel.org/patch/9088181/

I do believe PCI mode always work, so I would be interested if you
could report the bug upstream to have PCI mode work on all Powermac
(AGP is know to be broken).

Pay attention to your /etc/modules file check whether or not it
contains a option for the loaded modules, eg:

radeon.agpmode=-1

Finally your dmesg looks odd since the line `[drm] Forcing AGP to PCI
mode` comes only after the first error.

-M

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-19 10:38           ` Benjamin Herrenschmidt
@ 2016-09-19 19:30             ` Herminio Hernandez, Jr.
  0 siblings, 0 replies; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-09-19 19:30 UTC (permalink / raw)
  To: Benjamin Herrenschmidt
  Cc: Mike, Pranith Kumar, open list:LINUX FOR POWERPC...,
	Aneesh Kumar K.V, debian-powerpc


[-- Attachment #1.1: Type: text/plain, Size: 1381 bytes --]

Ben,

Are these what you are looking for? I can dump the entire journalctl log if
you need it.

Mathieu,

In Debian I looked in /etc/modules, /etc/modprobe.d/ , and
/usr/share/X11/xorg.conf.d/ to see where I can find what is forcing the GPU
into PCI mode and I have found nothing.

Here are some more updates with Lubuntu 16.10

1. Video playback with mpv renders in opengl with the GPU not in PCI mode

2. compton freezes the DE when I use opengl as the backend but works with
xrender

Regards,
Herminio



On Mon, Sep 19, 2016 at 3:38 AM, Benjamin Herrenschmidt <
benh@kernel.crashing.org> wrote:

> On Mon, 2016-09-19 at 02:13 -0700, Herminio Hernandez, Jr. wrote:
> >
> > I noticed the GPU was set to PCI mode however I did not set
> > radeon.agpmode=-1 in yaboot. I then installed Lubuntu 16.10 along
> > side Debian. I noticed that GPU was working and it was not set to
> > force PCI mode. Has there been a change to kernel in Debian to force
> > this by default? If so it looks like it is breaking on certain G5
> > machines. I am attaching bothe dmesg files for review.
> >
> > Thanks and sorry for the previous garbled email.
>
> Hrm... this is odd. I would expect PCI mode to work and AGP to be
> busted to be honest. Can you provide the complete log ? I wonder
> if it's trying to enable the PCIe bypass high aperture and hits the
> Radeon address limit...
>
> Ben.
>
>

[-- Attachment #1.2: Type: text/html, Size: 1953 bytes --]

[-- Attachment #2: debian-kernel.log --]
[-- Type: text/x-log, Size: 53058 bytes --]

root@Debian-G5:/home/rican-linux# journalctl |grep -e kernel
Sep 19 11:29:54 Debian-G5 kernel: Allocated 131072 bytes for 32 pacas at c00000000ffe0000
Sep 19 11:29:54 Debian-G5 kernel: DART table allocated at: c00000007f000000
Sep 19 11:29:54 Debian-G5 kernel: Using PowerMac machine description
Sep 19 11:29:54 Debian-G5 kernel: Page orders: linear mapping = 24, virtual = 12, io = 12, vmemmap = 24
Sep 19 11:29:54 Debian-G5 kernel: cma: Reserved 208 MiB at 0x000000016f000000
Sep 19 11:29:54 Debian-G5 kernel: Found initrd at 0xc000000001b00000:0xc000000002d35000
Sep 19 11:29:54 Debian-G5 kernel: Found U3 memory controller & host bridge @ 0xf8000000 revision: 0xb3
Sep 19 11:29:54 Debian-G5 kernel: Mapped at 0xd000080080000000
Sep 19 11:29:54 Debian-G5 kernel: Found a K2 mac-io controller, rev: 32, mapped at 0xd000080080050000
Sep 19 11:29:54 Debian-G5 kernel: PowerMac motherboard: PowerMac G5
Sep 19 11:29:54 Debian-G5 kernel: DART IOMMU initialized for U3 type chipset
Sep 19 11:29:54 Debian-G5 kernel: bootconsole [udbg0] enabled
Sep 19 11:29:54 Debian-G5 kernel: CPU maps initialized for 1 thread per core
Sep 19 11:29:54 Debian-G5 kernel:  (thread shift is 0)
Sep 19 11:29:54 Debian-G5 kernel: Freed 65536 bytes for unused pacas
Sep 19 11:29:54 Debian-G5 kernel: Starting Linux ppc64 #1 SMP Debian 4.6.4-1 (2016-07-18)
Sep 19 11:29:54 Debian-G5 kernel: -----------------------------------------------------
Sep 19 11:29:54 Debian-G5 kernel: ppc64_pft_size    = 0x0
Sep 19 11:29:54 Debian-G5 kernel: phys_mem_size     = 0x100000000
Sep 19 11:29:54 Debian-G5 kernel: cpu_features      = 0x0804806318100448
Sep 19 11:29:54 Debian-G5 kernel:   possible        = 0x3fffffff18500649
Sep 19 11:29:54 Debian-G5 kernel:   always          = 0x0000000018100040
Sep 19 11:29:54 Debian-G5 kernel: cpu_user_features = 0xdc080000 0x00000000
Sep 19 11:29:54 Debian-G5 kernel: mmu_features      = 0x0c000001
Sep 19 11:29:54 Debian-G5 kernel: firmware_features = 0x0000000000000000
Sep 19 11:29:54 Debian-G5 kernel: htab_address      = 0xc00000017c000000
Sep 19 11:29:54 Debian-G5 kernel: htab_hash_mask    = 0x7ffff
Sep 19 11:29:54 Debian-G5 kernel: -----------------------------------------------------
Sep 19 11:29:54 Debian-G5 kernel: Linux version 4.6.0-1-powerpc64 (debian-kernel@lists.debian.org) (gcc version 5.4.0 20160609 (Debian 5.4.0-6) ) #1 SMP Debian 4.6.4-1 (2016-07-18)
Sep 19 11:29:54 Debian-G5 kernel: Top of RAM: 0x180000000, Total RAM: 0x100000000
Sep 19 11:29:54 Debian-G5 kernel: Memory hole size: 2048MB
Sep 19 11:29:54 Debian-G5 kernel: numa: Initmem setup node 0 [mem 0x00000000-0x17fffffff]
Sep 19 11:29:54 Debian-G5 kernel: numa:   NODE_DATA [mem 0x16efc6100-0x16efcffff]
Sep 19 11:29:54 Debian-G5 kernel: Found U3-AGP PCI host bridge.  Firmware bus number: 240->255
Sep 19 11:29:54 Debian-G5 kernel: PCI host bridge /pci@0,f0000000  ranges:
Sep 19 11:29:54 Debian-G5 kernel:  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
Sep 19 11:29:54 Debian-G5 kernel:   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
Sep 19 11:29:54 Debian-G5 kernel:  MEM 0x00000000a0000000..0x00000000bfffffff -> 0x00000000a0000000 
Sep 19 11:29:54 Debian-G5 kernel: Can't get bus-range for /ht@0,f2000000, assume bus 0
Sep 19 11:29:54 Debian-G5 kernel: Found U3-HT PCI host bridge.  Firmware bus number: 0->239
Sep 19 11:29:54 Debian-G5 kernel: PCI host bridge /ht@0,f2000000 (primary) ranges:
Sep 19 11:29:54 Debian-G5 kernel: via-pmu: Server Mode is disabled
Sep 19 11:29:54 Debian-G5 kernel: PMU driver v2 initialized for Core99, firmware: 0c
Sep 19 11:29:54 Debian-G5 kernel: nvram: Checking bank 0...
Sep 19 11:29:54 Debian-G5 kernel: nvram: gen0=893, gen1=894
Sep 19 11:29:54 Debian-G5 kernel: nvram: Active bank is: 1
Sep 19 11:29:54 Debian-G5 kernel: nvram: OF partition at 0x410
Sep 19 11:29:54 Debian-G5 kernel: nvram: XP partition at 0x1020
Sep 19 11:29:54 Debian-G5 kernel: nvram: NR partition at 0x1120
Sep 19 11:29:54 Debian-G5 kernel: Top of RAM: 0x180000000, Total RAM: 0x100000000
Sep 19 11:29:54 Debian-G5 kernel: Memory hole size: 2048MB
Sep 19 11:29:54 Debian-G5 kernel: Zone ranges:
Sep 19 11:29:54 Debian-G5 kernel:   DMA      [mem 0x0000000000000000-0x000000017fffffff]
Sep 19 11:29:54 Debian-G5 kernel:   DMA32    empty
Sep 19 11:29:54 Debian-G5 kernel:   Normal   empty
Sep 19 11:29:54 Debian-G5 kernel: Movable zone start for each node
Sep 19 11:29:54 Debian-G5 kernel: Early memory node ranges
Sep 19 11:29:54 Debian-G5 kernel:   node   0: [mem 0x0000000000000000-0x000000007fffffff]
Sep 19 11:29:54 Debian-G5 kernel:   node   0: [mem 0x0000000100000000-0x000000017fffffff]
Sep 19 11:29:54 Debian-G5 kernel: Initmem setup node 0 [mem 0x0000000000000000-0x000000017fffffff]
Sep 19 11:29:54 Debian-G5 kernel: On node 0 totalpages: 65536
Sep 19 11:29:54 Debian-G5 kernel:   DMA zone: 64 pages used for memmap
Sep 19 11:29:54 Debian-G5 kernel:   DMA zone: 0 pages reserved
Sep 19 11:29:54 Debian-G5 kernel:   DMA zone: 65536 pages, LIFO batch:1
Sep 19 11:29:54 Debian-G5 kernel: percpu: Embedded 3 pages/cpu @c00000016ee00000 s133912 r0 d62696 u524288
Sep 19 11:29:54 Debian-G5 kernel: pcpu-alloc: s133912 r0 d62696 u524288 alloc=1*1048576
Sep 19 11:29:54 Debian-G5 kernel: pcpu-alloc: [0] 0 1 
Sep 19 11:29:54 Debian-G5 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 65472
Sep 19 11:29:54 Debian-G5 kernel: Policy zone: DMA
Sep 19 11:29:54 Debian-G5 kernel: Kernel command line: root=UUID=aeca9a67-31d7-4c4b-a0f8-4db328b33305  
Sep 19 11:29:54 Debian-G5 kernel: PID hash table entries: 4096 (order: -1, 32768 bytes)
Sep 19 11:29:54 Debian-G5 kernel: Sorting __ex_table...
Sep 19 11:29:54 Debian-G5 kernel: Memory: 3847232K/4194304K available (8320K kernel code, 1920K rwdata, 1920K rodata, 1024K init, 2068K bss, 134080K reserved, 212992K cma-reserved)
Sep 19 11:29:54 Debian-G5 kernel: Hierarchical RCU implementation.
Sep 19 11:29:54 Debian-G5 kernel:         Build-time adjustment of leaf fanout to 64.
Sep 19 11:29:54 Debian-G5 kernel:         RCU restricting CPUs from NR_CPUS=32 to nr_cpu_ids=2.
Sep 19 11:29:54 Debian-G5 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=2
Sep 19 11:29:54 Debian-G5 kernel: NR_IRQS:512 nr_irqs:512 16
Sep 19 11:29:54 Debian-G5 kernel: mpic: Resetting
Sep 19 11:29:54 Debian-G5 kernel: mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 2 CPUs
Sep 19 11:29:54 Debian-G5 kernel: mpic: ISU size: 120, shift: 7, mask: 7f
Sep 19 11:29:54 Debian-G5 kernel: mpic: Initializing for 120 sources
Sep 19 11:29:54 Debian-G5 kernel: mpic: Resetting
Sep 19 11:29:54 Debian-G5 kernel: mpic: Setting up MPIC " MPIC 2   " version 1.2 at f8040000, max 2 CPUs
Sep 19 11:29:54 Debian-G5 kernel: mpic: ISU size: 120, shift: 7, mask: 7f
Sep 19 11:29:54 Debian-G5 kernel: mpic: Initializing for 120 sources
Sep 19 11:29:54 Debian-G5 kernel: /u3@0,f8000000/mpic@f8040000: hooking up to IRQ 56
Sep 19 11:29:54 Debian-G5 kernel: time_init: decrementer frequency = 33.333333 MHz
Sep 19 11:29:54 Debian-G5 kernel: time_init: processor frequency   = 2000.000000 MHz
Sep 19 11:29:54 Debian-G5 kernel: clocksource: timebase: mask: 0xffffffffffffffff max_cycles: 0x7b00c4bad, max_idle_ns: 440795202744 ns
Sep 19 11:29:54 Debian-G5 kernel: clocksource: timebase mult[1e000005] shift[24] registered
Sep 19 11:29:54 Debian-G5 kernel: clockevent: decrementer mult[8888887] shift[32] cpu[0]
Sep 19 11:29:54 Debian-G5 kernel: Console: colour dummy device 80x25
Sep 19 11:29:54 Debian-G5 kernel: console [tty0] enabled
Sep 19 11:29:54 Debian-G5 kernel: bootconsole [udbg0] disabled
Sep 19 11:29:54 Debian-G5 kernel: pid_max: default: 32768 minimum: 301
Sep 19 11:29:54 Debian-G5 kernel: Security Framework initialized
Sep 19 11:29:54 Debian-G5 kernel: Yama: disabled by default; enable with sysctl kernel.yama.*
Sep 19 11:29:54 Debian-G5 kernel: AppArmor: AppArmor disabled by boot time parameter
Sep 19 11:29:54 Debian-G5 kernel: Dentry cache hash table entries: 524288 (order: 6, 4194304 bytes)
Sep 19 11:29:54 Debian-G5 kernel: Inode-cache hash table entries: 262144 (order: 5, 2097152 bytes)
Sep 19 11:29:54 Debian-G5 kernel: Mount-cache hash table entries: 8192 (order: 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: Mountpoint-cache hash table entries: 8192 (order: 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: Disabling memory control group subsystem
Sep 19 11:29:54 Debian-G5 kernel: ftrace: allocating 22126 entries in 9 pages
Sep 19 11:29:54 Debian-G5 kernel: PowerMac SMP probe found 2 cpus
Sep 19 11:29:54 Debian-G5 kernel: KeyWest i2c @0xf8001003 irq 42 /u3@0,f8000000/i2c@f8001000
Sep 19 11:29:54 Debian-G5 kernel:  channel 0 bus <multibus>
Sep 19 11:29:54 Debian-G5 kernel:  channel 1 bus <multibus>
Sep 19 11:29:54 Debian-G5 kernel: KeyWest i2c @0x80018000 irq 26 /ht@0,f2000000/pci@3/mac-io@7/i2c@18000
Sep 19 11:29:54 Debian-G5 kernel:  channel 0 bus <multibus>
Sep 19 11:29:54 Debian-G5 kernel: PMU i2c /ht@0,f2000000/pci@3/mac-io@7/via-pmu@16000/pmu-i2c
Sep 19 11:29:54 Debian-G5 kernel:  channel 1 bus <multibus>
Sep 19 11:29:54 Debian-G5 kernel:  channel 2 bus <multibus>
Sep 19 11:29:54 Debian-G5 kernel: Processor timebase sync using Cypress i2c clock
Sep 19 11:29:54 Debian-G5 kernel: mpic: requesting IPIs...
Sep 19 11:29:54 Debian-G5 kernel: PPC970/FX/MP performance monitor hardware support registered
Sep 19 11:29:54 Debian-G5 kernel: Brought up 2 CPUs
Sep 19 11:29:54 Debian-G5 kernel: devtmpfs: initialized
Sep 19 11:29:54 Debian-G5 kernel: EEH: devices created
Sep 19 11:29:54 Debian-G5 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 19 11:29:54 Debian-G5 kernel: NET: Registered protocol family 16
Sep 19 11:29:54 Debian-G5 kernel: eeh_init: Platform EEH operation not found
Sep 19 11:29:54 Debian-G5 kernel: IBM eBus Device Driver
Sep 19 11:29:54 Debian-G5 kernel: cpuidle: using governor ladder
Sep 19 11:29:54 Debian-G5 kernel: cpuidle: using governor menu
Sep 19 11:29:54 Debian-G5 kernel: PCI: Probing PCI hardware
Sep 19 11:29:54 Debian-G5 kernel: PCI host bridge to bus 0000:f0
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: root bus resource [io  0x10000-0x80ffff] (bus address [0x0000-0x7fffff])
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: root bus resource [mem 0xf1000000-0xf1ffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: root bus resource [mem 0xa0000000-0xbfffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: root bus resource [bus f0-ff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: busn_res: [bus f0-ff] end is updated to ff
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:0b.0: [106b:004b] type 00 class 0x060000
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: [1002:4150] type 00 class 0x030000
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: reg 0x10: [mem 0xb0000000-0xbfffffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: reg 0x14: [io  0x10400-0x104ff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: reg 0x18: [mem 0xa0000000-0xa000ffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: reg 0x30: [mem 0xa0020000-0xa003ffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0000:f0:10.0: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: IOMMU table initialized, virtual merging enabled
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: busn_res: [bus f0-ff] end is updated to f0
Sep 19 11:29:54 Debian-G5 kernel: PCI host bridge to bus 0001:00
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: root bus resource [io  0x820000-0xc1ffff] (bus address [0x0000-0x3fffff])
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: root bus resource [mem 0xfa000000-0xffffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: root bus resource [mem 0x80000000-0x9fffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: root bus resource [mem 0xc0000000-0xefffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: root bus resource [bus 00-ef]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: busn_res: [bus 00-ef] end is updated to ff
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:00.0: [106b:004a] type 00 class 0x060000
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:01.0: [1022:7450] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0: [1022:7450] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0: [106b:0045] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0: [106b:0046] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0: [106b:0047] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0: [106b:0048] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0: [106b:0049] type 01 class 0x060400
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:01.0: PCI bridge to [bus 06]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: [8086:1229] type 00 class 0x020000
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: reg 0x10: [mem 0x90000000-0x90000fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: reg 0x14: [io  0x820000-0x82003f]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: reg 0x18: [mem 0x90200000-0x902fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: reg 0x30: [mem 0x90100000-0x901fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0: PCI bridge to [bus 07]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0:   bridge window [io  0x820000-0x820fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:07.0: [106b:0041] type 00 class 0xff0000
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:07.0: reg 0x10: [mem 0x80000000-0x8007ffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:08.0: [106b:0040] type 00 class 0x0c0310
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:08.0: reg 0x10: [mem 0x80081000-0x80081fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:09.0: [106b:0040] type 00 class 0x0c0310
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:09.0: reg 0x10: [mem 0x80080000-0x80080fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0: PCI bridge to [bus 01]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.0: [1033:0035] type 00 class 0x0c0310
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.0: reg 0x10: [mem 0x80102000-0x80102fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.0: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.1: [1033:0035] type 00 class 0x0c0310
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.1: reg 0x10: [mem 0x80101000-0x80101fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.1: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.2: [1033:00e0] type 00 class 0x0c0320
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.2: reg 0x10: [mem 0x80100000-0x801000ff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.2: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.2: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0: PCI bridge to [bus 02]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0d.0: [106b:0043] type 00 class 0xff0000
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0d.0: reg 0x10: [mem 0x80204000-0x80207fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0e.0: [106b:0042] type 00 class 0x0c0010
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0e.0: reg 0x10: [mem 0x80200000-0x80200fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0e.0: supports D1 D2
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:03:0e.0: PME# supported from D0 D1 D2 D3hot
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0: PCI bridge to [bus 03]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:04:0f.0: [106b:004c] type 00 class 0x020000
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:04:0f.0: reg 0x10: [mem 0x80400000-0x805fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:04:0f.0: reg 0x30: [mem 0x80300000-0x803fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0: PCI bridge to [bus 04]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: [1166:0240] type 00 class 0x01018f
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x10: [io  0x820000-0x820007]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x14: [io  0x820000-0x820003]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x18: [io  0x820000-0x820007]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x1c: [io  0x820000-0x820003]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x20: [io  0x820000-0x82000f]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:05:0c.0: reg 0x24: [mem 0x80600000-0x80601fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0: PCI bridge to [bus 05]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: busn_res: [bus 00-ff] end is updated to 07
Sep 19 11:29:54 Debian-G5 kernel: PCI 0000:f0 Cannot reserve Legacy IO [io  0x10000-0x10fff]
Sep 19 11:29:54 Debian-G5 kernel: PCI 0001:00 Cannot reserve Legacy IO [io  0x820000-0x820fff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: resource 4 [io  0x10000-0x80ffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: resource 5 [mem 0xf1000000-0xf1ffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0000:f0: resource 6 [mem 0xa0000000-0xbfffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:01.0: PCI bridge to [bus 06]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:07:04.0: BAR 1: assigned [io  0x820000-0x82003f]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0: PCI bridge to [bus 07]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0:   bridge window [io  0x820000-0x820fff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0: PCI bridge to [bus 01]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0: PCI bridge to [bus 02]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0: PCI bridge to [bus 03]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0: PCI bridge to [bus 04]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0: PCI bridge to [bus 05]
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: resource 4 [io  0x820000-0xc1ffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: resource 5 [mem 0xfa000000-0xffffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: resource 6 [mem 0x80000000-0x9fffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:00: resource 7 [mem 0xc0000000-0xefffffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:07: resource 0 [io  0x820000-0x820fff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:07: resource 1 [mem 0x90000000-0x902fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:01: resource 1 [mem 0x80000000-0x800fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:02: resource 1 [mem 0x80100000-0x801fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:03: resource 1 [mem 0x80200000-0x802fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:04: resource 1 [mem 0x80300000-0x805fffff]
Sep 19 11:29:54 Debian-G5 kernel: pci_bus 0001:05: resource 1 [mem 0x80600000-0x806fffff]
Sep 19 11:29:54 Debian-G5 kernel: PCI: Probing PCI hardware done
Sep 19 11:29:54 Debian-G5 kernel: HugeTLB registered 16 MB page size, pre-allocated 0 pages
Sep 19 11:29:54 Debian-G5 kernel: vgaarb: device added: PCI:0000:f0:10.0,decodes=io+mem,owns=mem,locks=none
Sep 19 11:29:54 Debian-G5 kernel: vgaarb: loaded
Sep 19 11:29:54 Debian-G5 kernel: vgaarb: bridge control possible 0000:f0:10.0
Sep 19 11:29:54 Debian-G5 kernel: SCSI subsystem initialized
Sep 19 11:29:54 Debian-G5 kernel: libata version 3.00 loaded.
Sep 19 11:29:54 Debian-G5 kernel: clocksource: Switched to clocksource timebase
Sep 19 11:29:54 Debian-G5 kernel: VFS: Disk quotas dquot_6.6.0
Sep 19 11:29:54 Debian-G5 kernel: VFS: Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: NET: Registered protocol family 2
Sep 19 11:29:54 Debian-G5 kernel: TCP established hash table entries: 32768 (order: 2, 262144 bytes)
Sep 19 11:29:54 Debian-G5 kernel: TCP bind hash table entries: 32768 (order: 3, 524288 bytes)
Sep 19 11:29:54 Debian-G5 kernel: TCP: Hash tables configured (established 32768 bind 32768)
Sep 19 11:29:54 Debian-G5 kernel: UDP hash table entries: 2048 (order: 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: UDP-Lite hash table entries: 2048 (order: 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: NET: Registered protocol family 1
Sep 19 11:29:54 Debian-G5 kernel: PCI: CLS mismatch (32 != 64), using 128 bytes
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:01.0: MSI quirk detected; subordinate MSI disabled
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:01.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0: MSI quirk detected; subordinate MSI disabled
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:00:02.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:08.0: enabling device (0000 -> 0002)
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:01:09.0: enabling device (0000 -> 0002)
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.0: enabling device (0000 -> 0002)
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.1: enabling device (0000 -> 0002)
Sep 19 11:29:54 Debian-G5 kernel: pci 0001:02:0b.2: enabling device (0004 -> 0006)
Sep 19 11:29:54 Debian-G5 kernel: Unpacking initramfs...
Sep 19 11:29:54 Debian-G5 kernel: Freeing initrd memory: 18624K (c000000001b00000 - c000000002d30000)
Sep 19 11:29:54 Debian-G5 kernel: Hypercall H_BEST_ENERGY not supported
Sep 19 11:29:54 Debian-G5 kernel: futex hash table entries: 512 (order: 0, 65536 bytes)
Sep 19 11:29:54 Debian-G5 kernel: audit: initializing netlink subsys (disabled)
Sep 19 11:29:54 Debian-G5 kernel: audit: type=2000 audit(1474309786.143:1): initialized
Sep 19 11:29:54 Debian-G5 kernel: Initialise system trusted keyring
Sep 19 11:29:54 Debian-G5 kernel: workingset: timestamp_bits=36 max_order=16 bucket_order=0
Sep 19 11:29:54 Debian-G5 kernel: zbud: loaded
Sep 19 11:29:54 Debian-G5 kernel: Key type asymmetric registered
Sep 19 11:29:54 Debian-G5 kernel: Asymmetric key parser 'x509' registered
Sep 19 11:29:54 Debian-G5 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Sep 19 11:29:54 Debian-G5 kernel: io scheduler noop registered
Sep 19 11:29:54 Debian-G5 kernel: io scheduler deadline registered
Sep 19 11:29:54 Debian-G5 kernel: io scheduler cfq registered (default)
Sep 19 11:29:54 Debian-G5 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Sep 19 11:29:54 Debian-G5 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Sep 19 11:29:54 Debian-G5 kernel: Using unsupported 1920x1080 ATY,Simone_A at b8008000, depth=8, pitch=2048
Sep 19 11:29:54 Debian-G5 kernel: Console: switching to colour frame buffer device 240x67
Sep 19 11:29:54 Debian-G5 kernel: fb0: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_A@0
Sep 19 11:29:54 Debian-G5 kernel: Using unsupported 640x480 ATY,Simone_B at b2008000, depth=8, pitch=768
Sep 19 11:29:54 Debian-G5 kernel: checking generic (b8008000 21c000) vs hw (b2008000 5a000)
Sep 19 11:29:54 Debian-G5 kernel: fb1: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_B@1
Sep 19 11:29:54 Debian-G5 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Sep 19 11:29:54 Debian-G5 kernel: pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
Sep 19 11:29:54 Debian-G5 kernel: Linux agpgart interface v0.103
Sep 19 11:29:54 Debian-G5 kernel: agpgart-uninorth 0000:f0:0b.0: Apple U3 chipset
Sep 19 11:29:54 Debian-G5 kernel: agpgart-uninorth 0000:f0:0b.0: configuring for size idx: 64
Sep 19 11:29:54 Debian-G5 kernel: agpgart-uninorth 0000:f0:0b.0: AGP aperture is 256M @ 0x0
Sep 19 11:29:54 Debian-G5 kernel: MacIO PCI driver attached to K2 chipset
Sep 19 11:29:54 Debian-G5 kernel: 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
Sep 19 11:29:54 Debian-G5 kernel: 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
Sep 19 11:29:54 Debian-G5 kernel: pata-pci-macio 0001:03:0d.0: enabling device (0014 -> 0016)
Sep 19 11:29:54 Debian-G5 kernel: pata-pci-macio 0001:03:0d.0: Activating pata-macio chipset K2 ATA-6, Apple bus ID 3
Sep 19 11:29:54 Debian-G5 kernel: scsi host0: pata_macio
Sep 19 11:29:54 Debian-G5 kernel: ata1: PATA max UDMA/100 irq 39
Sep 19 11:29:54 Debian-G5 kernel: mousedev: PS/2 mouse device common for all mice
Sep 19 11:29:54 Debian-G5 kernel: rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
Sep 19 11:29:54 Debian-G5 kernel: PowerMac i2c bus pmu 2 registered
Sep 19 11:29:54 Debian-G5 kernel: PowerMac i2c bus pmu 1 registered
Sep 19 11:29:54 Debian-G5 kernel: PowerMac i2c bus mac-io 0 registered
Sep 19 11:29:54 Debian-G5 kernel: i2c i2c-2: No i2c address for /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/i2c-modem
Sep 19 11:29:54 Debian-G5 kernel: PowerMac i2c bus u3 1 registered
Sep 19 11:29:54 Debian-G5 kernel: i2c i2c-3: i2c-powermac: modalias failure on /u3@0,f8000000/i2c@f8001000/cereal@1c0
Sep 19 11:29:54 Debian-G5 kernel: PowerMac i2c bus u3 0 registered
Sep 19 11:29:54 Debian-G5 kernel: Registering G5 CPU frequency driver
Sep 19 11:29:54 Debian-G5 kernel: Frequency method: i2c/pfunc, Voltage method: i2c/pfunc
Sep 19 11:29:54 Debian-G5 kernel: Low: 1304 Mhz, High: 2000 Mhz, Cur: 2000 MHz
Sep 19 11:29:54 Debian-G5 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 19 11:29:54 Debian-G5 kernel: NET: Registered protocol family 10
Sep 19 11:29:54 Debian-G5 kernel: mip6: Mobile IPv6
Sep 19 11:29:54 Debian-G5 kernel: NET: Registered protocol family 17
Sep 19 11:29:54 Debian-G5 kernel: mpls_gso: MPLS GSO support
Sep 19 11:29:54 Debian-G5 kernel: PM: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
Sep 19 11:29:54 Debian-G5 kernel: registered taskstats version 1
Sep 19 11:29:54 Debian-G5 kernel: Loading compiled-in X.509 certificates
Sep 19 11:29:54 Debian-G5 kernel: alg: No test for pkcs1pad(rsa,sha256) (pkcs1pad(rsa-generic,sha256))
Sep 19 11:29:54 Debian-G5 kernel: Loaded X.509 cert 'Debian Project: Ben Hutchings: 008a018dca80932630'
Sep 19 11:29:54 Debian-G5 kernel: zswap: loaded using pool lzo/zbud
Sep 19 11:29:54 Debian-G5 kernel: input: PMU as /devices/virtual/input/input0
Sep 19 11:29:54 Debian-G5 kernel: rtc-generic rtc-generic: setting system clock to 2016-09-19 18:29:47 UTC (1474309787)
Sep 19 11:29:54 Debian-G5 kernel: PM: Hibernation image not present or could not be loaded.
Sep 19 11:29:54 Debian-G5 kernel: ata1.00: ATAPI: HL-DT-ST RW/DVD GCC-4480B, 1.03, max UDMA/33
Sep 19 11:29:54 Debian-G5 kernel: ata1.00: configured for UDMA/33
Sep 19 11:29:54 Debian-G5 kernel: blk_queue_max_segment_size: set to minimum 65536
Sep 19 11:29:54 Debian-G5 kernel: scsi 0:0:0:0: CD-ROM            HL-DT-ST RW/DVD GCC-4480B 1.03 PQ: 0 ANSI: 5
Sep 19 11:29:54 Debian-G5 kernel: ata1.00: K2/Shasta alignment limits applied
Sep 19 11:29:54 Debian-G5 kernel: Freeing unused kernel memory: 1024K (c000000000a10000 - c000000000b10000)
Sep 19 11:29:54 Debian-G5 kernel: This architecture does not have kernel memory protection.
Sep 19 11:29:54 Debian-G5 kernel: random: systemd-udevd urandom read with 10 bits of entropy available
Sep 19 11:29:54 Debian-G5 kernel: mii: module verification failed: signature and/or required key missing - tainting kernel
Sep 19 11:29:54 Debian-G5 kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
Sep 19 11:29:54 Debian-G5 kernel: e100: Copyright(c) 1999-2006 Intel Corporation
Sep 19 11:29:54 Debian-G5 kernel: usbcore: registered new interface driver usbfs
Sep 19 11:29:54 Debian-G5 kernel: usbcore: registered new interface driver hub
Sep 19 11:29:54 Debian-G5 kernel: usbcore: registered new device driver usb
Sep 19 11:29:54 Debian-G5 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 19 11:29:54 Debian-G5 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Sep 19 11:29:54 Debian-G5 kernel: ehci-pci: EHCI PCI platform driver
Sep 19 11:29:54 Debian-G5 kernel: ehci-pci 0001:02:0b.2: EHCI Host Controller
Sep 19 11:29:54 Debian-G5 kernel: ehci-pci 0001:02:0b.2: new USB bus registered, assigned bus number 1
Sep 19 11:29:54 Debian-G5 kernel: ehci-pci 0001:02:0b.2: irq 63, io mem 0x80100000
Sep 19 11:29:54 Debian-G5 kernel: ehci-pci 0001:02:0b.2: USB 2.0 started, EHCI 1.00
Sep 19 11:29:54 Debian-G5 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Sep 19 11:29:54 Debian-G5 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:29:54 Debian-G5 kernel: usb usb1: Product: EHCI Host Controller
Sep 19 11:29:54 Debian-G5 kernel: usb usb1: Manufacturer: Linux 4.6.0-1-powerpc64 ehci_hcd
Sep 19 11:29:54 Debian-G5 kernel: usb usb1: SerialNumber: 0001:02:0b.2
Sep 19 11:29:54 Debian-G5 kernel: sr 0:0:0:0: [sr0] scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
Sep 19 11:29:54 Debian-G5 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Sep 19 11:29:54 Debian-G5 kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
Sep 19 11:29:54 Debian-G5 kernel: hub 1-0:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 1-0:1.0: 5 ports detected
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci: OHCI PCI platform driver
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:08.0: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:08.0: new USB bus registered, assigned bus number 2
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:08.0: irq 27, io mem 0x80081000
Sep 19 11:29:54 Debian-G5 kernel: sungem.c:v1.0 David S. Miller <davem@redhat.com>
Sep 19 11:29:54 Debian-G5 kernel: gem 0001:04:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:0a:95:bb:30:6c
Sep 19 11:29:54 Debian-G5 kernel: firewire_ohci 0001:03:0e.0: enabling device (0000 -> 0002)
Sep 19 11:29:54 Debian-G5 kernel: sata_svw 0001:05:0c.0: version 2.3
Sep 19 11:29:54 Debian-G5 kernel: scsi host1: sata_svw
Sep 19 11:29:54 Debian-G5 kernel: scsi host2: sata_svw
Sep 19 11:29:54 Debian-G5 kernel: firewire_ohci 0001:03:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
Sep 19 11:29:54 Debian-G5 kernel: scsi host3: sata_svw
Sep 19 11:29:54 Debian-G5 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:29:54 Debian-G5 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:29:54 Debian-G5 kernel: usb usb2: Product: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: usb usb2: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
Sep 19 11:29:54 Debian-G5 kernel: usb usb2: SerialNumber: 0001:01:08.0
Sep 19 11:29:54 Debian-G5 kernel: scsi host4: sata_svw
Sep 19 11:29:54 Debian-G5 kernel: ata2: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600000 irq 16
Sep 19 11:29:54 Debian-G5 kernel: ata3: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600100 irq 16
Sep 19 11:29:54 Debian-G5 kernel: ata4: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600200 irq 16
Sep 19 11:29:54 Debian-G5 kernel: ata5: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600300 irq 16
Sep 19 11:29:54 Debian-G5 kernel: hub 2-0:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 2-0:1.0: 2 ports detected
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:09.0: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:09.0: new USB bus registered, assigned bus number 3
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:01:09.0: irq 28, io mem 0x80080000
Sep 19 11:29:54 Debian-G5 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:29:54 Debian-G5 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:29:54 Debian-G5 kernel: usb usb3: Product: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: usb usb3: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
Sep 19 11:29:54 Debian-G5 kernel: usb usb3: SerialNumber: 0001:01:09.0
Sep 19 11:29:54 Debian-G5 kernel: hub 3-0:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 3-0:1.0: 2 ports detected
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.0: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.0: new USB bus registered, assigned bus number 4
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.0: irq 63, io mem 0x80102000
Sep 19 11:29:54 Debian-G5 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:29:54 Debian-G5 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:29:54 Debian-G5 kernel: usb usb4: Product: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: usb usb4: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
Sep 19 11:29:54 Debian-G5 kernel: usb usb4: SerialNumber: 0001:02:0b.0
Sep 19 11:29:54 Debian-G5 kernel: hub 4-0:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 4-0:1.0: 3 ports detected
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.1: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.1: new USB bus registered, assigned bus number 5
Sep 19 11:29:54 Debian-G5 kernel: ohci-pci 0001:02:0b.1: irq 63, io mem 0x80101000
Sep 19 11:29:54 Debian-G5 kernel: gem 0001:04:0f.0 enP1p4s15f0: renamed from eth0
Sep 19 11:29:54 Debian-G5 kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Sep 19 11:29:54 Debian-G5 kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:29:54 Debian-G5 kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:29:54 Debian-G5 kernel: usb usb5: Product: OHCI PCI host controller
Sep 19 11:29:54 Debian-G5 kernel: usb usb5: Manufacturer: Linux 4.6.0-1-powerpc64 ohci_hcd
Sep 19 11:29:54 Debian-G5 kernel: usb usb5: SerialNumber: 0001:02:0b.1
Sep 19 11:29:54 Debian-G5 kernel: hub 5-0:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 5-0:1.0: 2 ports detected
Sep 19 11:29:54 Debian-G5 kernel: ata2.00: ATA-6: ST3160023AS, 3.05, max UDMA/133
Sep 19 11:29:54 Debian-G5 kernel: ata2.00: 312581808 sectors, multi 16: LBA48 
Sep 19 11:29:54 Debian-G5 kernel: ata2.00: configured for UDMA/133
Sep 19 11:29:54 Debian-G5 kernel: scsi 1:0:0:0: Direct-Access     ATA      ST3160023AS      3.05 PQ: 0 ANSI: 5
Sep 19 11:29:54 Debian-G5 kernel: e100 0001:07:04.0: enabling device (0004 -> 0007)
Sep 19 11:29:54 Debian-G5 kernel: firewire_core 0001:03:0e.0: created device fw0: GUID 000a95fffebb306c, S800
Sep 19 11:29:54 Debian-G5 kernel: e100 0001:07:04.0 eth0: addr 0x90000000, irq 54, MAC addr 00:0e:0c:07:b3:47
Sep 19 11:29:54 Debian-G5 kernel: e100 0001:07:04.0 enP1p7s4: renamed from eth0
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2: new full-speed USB device number 2 using ohci-pci
Sep 19 11:29:54 Debian-G5 kernel: ata3: SATA link down (SStatus 4 SControl 300)
Sep 19 11:29:54 Debian-G5 kernel: usb 4-1: new low-speed USB device number 2 using ohci-pci
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2: New USB device found, idVendor=413c, idProduct=1005
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2: Product: Dell Multimedia Pro Keyboard Hub
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2: Manufacturer: Dell
Sep 19 11:29:54 Debian-G5 kernel: hub 5-2:1.0: USB hub found
Sep 19 11:29:54 Debian-G5 kernel: hub 5-2:1.0: 3 ports detected
Sep 19 11:29:54 Debian-G5 kernel: usb 4-1: New USB device found, idVendor=0461, idProduct=4d81
Sep 19 11:29:54 Debian-G5 kernel: usb 4-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Sep 19 11:29:54 Debian-G5 kernel: usb 4-1: Product: USB Optical Mouse
Sep 19 11:29:54 Debian-G5 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Sep 19 11:29:54 Debian-G5 kernel: ata4: SATA link down (SStatus 4 SControl 300)
Sep 19 11:29:54 Debian-G5 kernel: usbcore: registered new interface driver usbhid
Sep 19 11:29:54 Debian-G5 kernel: usbhid: USB HID core driver
Sep 19 11:29:54 Debian-G5 kernel: input: USB Optical Mouse as /devices/pci0001:00/0001:00:04.0/0001:02:0b.0/usb4/4-1/4-1:1.0/0003:0461:4D81.0001/input/input1
Sep 19 11:29:54 Debian-G5 kernel: hid-generic 0003:0461:4D81.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-0001:02:0b.0-1/input0
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2.1: new low-speed USB device number 3 using ohci-pci
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2.1: New USB device found, idVendor=413c, idProduct=2011
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2.1: Product: Dell Multimedia Pro Keyboard
Sep 19 11:29:54 Debian-G5 kernel: usb 5-2.1: Manufacturer: Dell
Sep 19 11:29:54 Debian-G5 kernel: input: Dell Dell Multimedia Pro Keyboard as /devices/pci0001:00/0001:00:04.0/0001:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.0/0003:413C:2011.0002/input/input2
Sep 19 11:29:54 Debian-G5 kernel: hid-generic 0003:413C:2011.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell Multimedia Pro Keyboard] on usb-0001:02:0b.1-2.1/input0
Sep 19 11:29:54 Debian-G5 kernel: ata5: SATA link down (SStatus 4 SControl 300)
Sep 19 11:29:54 Debian-G5 kernel: input: Dell Dell Multimedia Pro Keyboard as /devices/pci0001:00/0001:00:04.0/0001:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.1/0003:413C:2011.0003/input/input3
Sep 19 11:29:54 Debian-G5 kernel: sd 1:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
Sep 19 11:29:54 Debian-G5 kernel: sd 1:0:0:0: [sda] Write Protect is off
Sep 19 11:29:54 Debian-G5 kernel: sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
Sep 19 11:29:54 Debian-G5 kernel: sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Sep 19 11:29:54 Debian-G5 kernel:  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
Sep 19 11:29:54 Debian-G5 kernel: sd 1:0:0:0: [sda] Attached SCSI disk
Sep 19 11:29:54 Debian-G5 kernel: hid-generic 0003:413C:2011.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell Multimedia Pro Keyboard] on usb-0001:02:0b.1-2.1/input1
Sep 19 11:29:54 Debian-G5 kernel: PM: Starting manual resume from disk
Sep 19 11:29:54 Debian-G5 kernel: PM: Hibernation image partition 8:3 present
Sep 19 11:29:54 Debian-G5 kernel: PM: Looking for hibernation image.
Sep 19 11:29:54 Debian-G5 kernel: PM: Image not found (code -22)
Sep 19 11:29:54 Debian-G5 kernel: PM: Hibernation image not present or could not be loaded.
Sep 19 11:29:54 Debian-G5 kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Sep 19 11:29:54 Debian-G5 kernel: random: nonblocking pool is initialized
Sep 19 11:29:54 Debian-G5 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Sep 19 11:29:54 Debian-G5 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Sep 19 11:29:54 Debian-G5 kernel: lp: driver loaded but no devices found
Sep 19 11:29:54 Debian-G5 kernel: EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
Sep 19 11:29:54 Debian-G5 systemd[1]: Started Create list of required static device nodes for the current kernel.
Sep 19 11:29:55 Debian-G5 kernel: i2c /dev entries driver
Sep 19 11:29:55 Debian-G5 kernel: [drm] Initialized drm 1.1.0 20060810
Sep 19 11:29:56 Debian-G5 kernel: sr 0:0:0:0: Attached scsi generic sg0 type 5
Sep 19 11:29:56 Debian-G5 kernel: sd 1:0:0:0: Attached scsi generic sg1 type 0
Sep 19 11:29:56 Debian-G5 kernel: windfarm: Initializing for desktop G5 with 2 chips
Sep 19 11:29:56 Debian-G5 kernel: windfarm: CPUs control loops started.
Sep 19 11:29:56 Debian-G5 kernel: wf_pm72: Backside control loop started.
Sep 19 11:29:56 Debian-G5 kernel: wf_pm72: Drive bay control loop started.
Sep 19 11:29:56 Debian-G5 kernel: snd-powermac no longer handles any machines with a layout-id property in the device-tree, use snd-aoa.
Sep 19 11:29:56 Debian-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:29:56 Debian-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:29:56 Debian-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:29:56 Debian-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:29:56 Debian-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:29:56 Debian-G5 kernel: snd-aoa-codec-tas: tas found, addr 0x35 on /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/deq@6a
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon kernel modesetting enabled.
Sep 19 11:29:57 Debian-G5 kernel: checking generic (b8008000 21c000) vs hw (b0000000 10000000)
Sep 19 11:29:57 Debian-G5 kernel: fb: switching to radeondrmfb from OFfb ATY,Simone
Sep 19 11:29:57 Debian-G5 kernel: Console: switching to colour dummy device 80x25
Sep 19 11:29:57 Debian-G5 kernel: checking generic (b2008000 5a000) vs hw (b0000000 10000000)
Sep 19 11:29:57 Debian-G5 kernel: fb: switching to radeondrmfb from OFfb ATY,Simone
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: enabling device (0006 -> 0007)
Sep 19 11:29:57 Debian-G5 kernel: [drm] initializing kernel modesetting (RV350 0x1002:0x4150 0x1002:0x4150 0x00).
Sep 19 11:29:57 Debian-G5 kernel: [drm] register mmio base: 0xA0000000
Sep 19 11:29:57 Debian-G5 kernel: [drm] register mmio size: 65536
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
Sep 19 11:29:57 Debian-G5 kernel: [drm] Not an x86 BIOS ROM, not using.
Sep 19 11:29:57 Debian-G5 kernel: [drm] Using device-tree clock info
Sep 19 11:29:57 Debian-G5 kernel: agpgart-uninorth 0000:f0:0b.0: putting AGP V3 device into 8x mode
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: putting AGP V3 device into 8x mode
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: GTT: 256M 0x00000000 - 0x0FFFFFFF
Sep 19 11:29:57 Debian-G5 kernel: [drm] Generation 2 PCI interface, using max accessible memory
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
Sep 19 11:29:57 Debian-G5 kernel: [drm] Detected VRAM RAM=256M, BAR=256M
Sep 19 11:29:57 Debian-G5 kernel: [drm] RAM width 128bits DDR
Sep 19 11:29:57 Debian-G5 kernel: [TTM] Zone  kernel: Available graphics memory: 2040416 kiB
Sep 19 11:29:57 Debian-G5 kernel: [TTM] Initializing pool allocator
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: 64M of VRAM memory ready
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: 256M of GTT memory ready.
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: WB disabled
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000000000000 and cpu addr 0xd000000003fe0000
Sep 19 11:29:57 Debian-G5 kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Sep 19 11:29:57 Debian-G5 kernel: [drm] Driver supports precise vblank timestamp query.
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: irq initialized.
Sep 19 11:29:57 Debian-G5 kernel: [drm] Loading R300 Microcode
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: firmware: direct-loading firmware radeon/R300_cp.bin
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: ring at 0x0000000000010000
Sep 19 11:29:57 Debian-G5 kernel: [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD)
Sep 19 11:29:57 Debian-G5 kernel: [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't working (-22).
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: failed initializing CP (-22).
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: Disabling GPU acceleration
Sep 19 11:29:57 Debian-G5 kernel: [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle timeout, shutting down CP.
Sep 19 11:29:57 Debian-G5 kernel: Failed to wait GUI idle while programming pipes. Bad things might happen.
Sep 19 11:29:57 Debian-G5 kernel: [drm] radeon: cp finalized
Sep 19 11:29:57 Debian-G5 kernel: radeon 0000:f0:10.0: (r300_asic_reset:425) RBBM_STATUS=0x80010140
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: (r300_asic_reset:444) RBBM_STATUS=0x80010140
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: (r300_asic_reset:456) RBBM_STATUS=0x00000140
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: GPU reset succeed
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: cp finalized
Sep 19 11:29:58 Debian-G5 kernel: [TTM] Finalizing pool allocator
Sep 19 11:29:58 Debian-G5 kernel: [TTM] Zone  kernel: Used memory at exit: 0 kiB
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: ttm finalized
Sep 19 11:29:58 Debian-G5 kernel: [drm] Forcing AGP to PCI mode
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
Sep 19 11:29:58 Debian-G5 kernel: [drm] Not an x86 BIOS ROM, not using.
Sep 19 11:29:58 Debian-G5 kernel: [drm] Using device-tree clock info
Sep 19 11:29:58 Debian-G5 kernel: [drm] Generation 2 PCI interface, using max accessible memory
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: GTT: 512M 0x0000000090000000 - 0x00000000AFFFFFFF
Sep 19 11:29:58 Debian-G5 kernel: [drm] Detected VRAM RAM=256M, BAR=256M
Sep 19 11:29:58 Debian-G5 kernel: [drm] RAM width 128bits DDR
Sep 19 11:29:58 Debian-G5 kernel: [TTM] Zone  kernel: Available graphics memory: 2040416 kiB
Sep 19 11:29:58 Debian-G5 kernel: [TTM] Initializing pool allocator
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: 64M of VRAM memory ready
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: 512M of GTT memory ready.
Sep 19 11:29:58 Debian-G5 kernel: [drm] GART: num cpu pages 8192, num gpu pages 131072
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
Sep 19 11:29:58 Debian-G5 kernel: [drm] PCI GART of 512M enabled (table at 0x0000000063000000).
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: WB enabled
Sep 19 11:29:58 Debian-G5 kernel: radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000090000000 and cpu addr 0xc000000146510000
Sep 19 11:29:58 Debian-G5 kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Sep 19 11:29:58 Debian-G5 kernel: [drm] Driver supports precise vblank timestamp query.
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: irq initialized.
Sep 19 11:29:58 Debian-G5 kernel: [drm] radeon: ring at 0x0000000090010000
Sep 19 11:29:59 Debian-G5 kernel: [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test failed (scratch(0x15E4)=0xCAFEDEAD)
Sep 19 11:29:59 Debian-G5 kernel: [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't working (-22).
Sep 19 11:29:59 Debian-G5 kernel: radeon 0000:f0:10.0: failed initializing CP (-22).
Sep 19 11:29:59 Debian-G5 kernel: radeon 0000:f0:10.0: Disabling GPU acceleration
Sep 19 11:29:59 Debian-G5 kernel: [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle timeout, shutting down CP.
Sep 19 11:29:59 Debian-G5 kernel: [drm] radeon: cp finalized
Sep 19 11:29:59 Debian-G5 kernel: [drm] Connector Table: 12 (mac g5 9600)
Sep 19 11:29:59 Debian-G5 kernel: [drm] No valid Ext TMDS info found in BIOS
Sep 19 11:29:59 Debian-G5 kernel: [drm] No TV DAC info found in BIOS
Sep 19 11:29:59 Debian-G5 kernel: [drm] No TMDS info found in BIOS
Sep 19 11:29:59 Debian-G5 kernel: [drm] Radeon Display Connectors
Sep 19 11:29:59 Debian-G5 kernel: [drm] Connector 0:
Sep 19 11:29:59 Debian-G5 kernel: [drm]   DVI-I-1
Sep 19 11:29:59 Debian-G5 kernel: [drm]   HPD1
Sep 19 11:29:59 Debian-G5 kernel: [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Sep 19 11:29:59 Debian-G5 kernel: [drm]   Encoders:
Sep 19 11:29:59 Debian-G5 kernel: [drm]     DFP2: INTERNAL_DVO1
Sep 19 11:29:59 Debian-G5 kernel: [drm]     CRT2: INTERNAL_DAC2
Sep 19 11:29:59 Debian-G5 kernel: [drm] Connector 1:
Sep 19 11:29:59 Debian-G5 kernel: [drm]   DVI-I-2
Sep 19 11:29:59 Debian-G5 kernel: [drm]   HPD2
Sep 19 11:29:59 Debian-G5 kernel: [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Sep 19 11:29:59 Debian-G5 kernel: [drm]   Encoders:
Sep 19 11:29:59 Debian-G5 kernel: [drm]     DFP1: INTERNAL_TMDS1
Sep 19 11:29:59 Debian-G5 kernel: [drm]     CRT1: INTERNAL_DAC1
Sep 19 11:29:59 Debian-G5 kernel: [drm] Connector 2:
Sep 19 11:29:59 Debian-G5 kernel: [drm]   SVIDEO-1
Sep 19 11:29:59 Debian-G5 kernel: [drm]   Encoders:
Sep 19 11:29:59 Debian-G5 kernel: [drm]     TV1: INTERNAL_DAC2
Sep 19 11:29:59 Debian-G5 kernel: Unable to find swap-space signature
Sep 19 11:29:59 Debian-G5 kernel: [drm] fb mappable at 0xB0040000
Sep 19 11:29:59 Debian-G5 kernel: [drm] vram apper at 0xB0000000
Sep 19 11:29:59 Debian-G5 kernel: [drm] size 8323072
Sep 19 11:29:59 Debian-G5 kernel: [drm] fb depth is 24
Sep 19 11:29:59 Debian-G5 kernel: [drm]    pitch is 7680
Sep 19 11:29:59 Debian-G5 kernel: Console: switching to colour frame buffer device 240x67
Sep 19 11:29:59 Debian-G5 kernel: radeon 0000:f0:10.0: fb0: radeondrmfb frame buffer device
Sep 19 11:29:59 Debian-G5 kernel: [drm] Initialized radeon 2.43.0 20080528 for 0000:f0:10.0 on minor 0
Sep 19 11:29:59 Debian-G5 kernel: EXT4-fs (sda4): mounting ext2 file system using the ext4 subsystem
Sep 19 11:29:59 Debian-G5 kernel: EXT4-fs (sda4): mounted filesystem without journal. Opts: (null)
Sep 19 11:30:00 Debian-G5 systemd[1]: Starting LSB: Load kernel modules needed to enable cpufreq scaling...
Sep 19 11:30:03 Debian-G5 loadcpufreq[418]: Loading cpufreq kernel modules...done (none).
Sep 19 11:30:03 Debian-G5 systemd[1]: Started LSB: Load kernel modules needed to enable cpufreq scaling.
Sep 19 11:30:03 Debian-G5 systemd[1]: Starting LSB: set CPUFreq kernel parameters...
Sep 19 11:30:03 Debian-G5 systemd[1]: Started LSB: set CPUFreq kernel parameters.
Sep 19 11:30:05 Debian-G5 NetworkManager[444]: <info>  [1474309805.7808] manager[0x10a17038]: monitoring kernel firmware directory '/lib/firmware'.
Sep 19 11:30:07 Debian-G5 systemd[1]: Startup finished in 5.947s (kernel) + 15.070s (userspace) = 21.017s.
Sep 19 11:30:07 Debian-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP1p4s15f0: link is not ready
Sep 19 11:30:07 Debian-G5 kernel: sungem_phy: PHY ID: 2062e0, addr: 1
Sep 19 11:30:07 Debian-G5 kernel: gem 0001:04:0f.0 enP1p4s15f0: Found BCM5421-K2 PHY
Sep 19 11:30:07 Debian-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP1p4s15f0: link is not ready
Sep 19 11:30:07 Debian-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP1p7s4: link is not ready
Sep 19 11:30:07 Debian-G5 kernel: e100 0001:07:04.0: firmware: direct-loading firmware e100/d101m_ucode.bin
Sep 19 11:30:07 Debian-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP1p7s4: link is not ready
Sep 19 11:30:10 Debian-G5 kernel: gem 0001:04:0f.0 enP1p4s15f0: Link is up at 1000 Mbps, full-duplex
Sep 19 11:30:10 Debian-G5 kernel: gem 0001:04:0f.0 enP1p4s15f0: Pause is disabled
Sep 19 11:30:10 Debian-G5 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enP1p4s15f0: link becomes ready
Sep 19 11:30:46 Debian-G5 kernel: mate-power-mana[806]: unhandled signal 11 at ff25ff00 nip 1ea04100 lr 1ed57930 code 30002
Sep 19 11:31:55 Debian-G5 kernel: mate-terminal[931]: unhandled signal 11 at ff55fe50 nip 1ef64100 lr 1f387930 code 30002
Sep 19 11:35:30 Debian-G5 kernel: mate-terminal[971]: unhandled signal 11 at ff10fe10 nip 1ef54100 lr 1f377930 code 30002
root@Debian-G5:/home/rican-linux# 


[-- Attachment #3: lubuntu-kernel.log --]
[-- Type: text/x-log, Size: 55049 bytes --]

rican-linux@Lubuntu-G5:~$ journalctl |grep kernel
Sep 19 11:12:18 Lubuntu-G5 kernel: Allocated 2359296 bytes for 1024 pacas at c00000000fdc0000
Sep 19 11:12:18 Lubuntu-G5 kernel: DART table allocated at: c00000007f000000
Sep 19 11:12:18 Lubuntu-G5 kernel: Using PowerMac machine description
Sep 19 11:12:18 Lubuntu-G5 kernel: Page orders: linear mapping = 24, virtual = 12, io = 12, vmemmap = 24
Sep 19 11:12:18 Lubuntu-G5 kernel: cma: Reserved 208 MiB at 0x000000016f000000
Sep 19 11:12:18 Lubuntu-G5 kernel: Found initrd at 0xc000000002900000:0xc000000004da8000
Sep 19 11:12:18 Lubuntu-G5 kernel: Found U3 memory controller & host bridge @ 0xf8000000 revision: 0xb3
Sep 19 11:12:18 Lubuntu-G5 kernel: Mapped at 0xd000080080000000
Sep 19 11:12:18 Lubuntu-G5 kernel: Found a K2 mac-io controller, rev: 32, mapped at 0xd000080080041000
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac motherboard: PowerMac G5
Sep 19 11:12:18 Lubuntu-G5 kernel: DART IOMMU initialized for U3 type chipset
Sep 19 11:12:18 Lubuntu-G5 kernel: bootconsole [udbg0] enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: CPU maps initialized for 1 thread per core
Sep 19 11:12:18 Lubuntu-G5 kernel:  (thread shift is 0)
Sep 19 11:12:18 Lubuntu-G5 kernel: Freed 2351104 bytes for unused pacas
Sep 19 11:12:18 Lubuntu-G5 kernel: Starting Linux ppc64 #55-Ubuntu SMP Fri Aug 26 06:18:46 UTC 2016
Sep 19 11:12:18 Lubuntu-G5 kernel: -----------------------------------------------------
Sep 19 11:12:18 Lubuntu-G5 kernel: ppc64_pft_size    = 0x0
Sep 19 11:12:18 Lubuntu-G5 kernel: phys_mem_size     = 0x100000000
Sep 19 11:12:18 Lubuntu-G5 kernel: cpu_features      = 0x0804806318100448
Sep 19 11:12:18 Lubuntu-G5 kernel:   possible        = 0x1fffffef18500649
Sep 19 11:12:18 Lubuntu-G5 kernel:   always          = 0x0000000018100040
Sep 19 11:12:18 Lubuntu-G5 kernel: cpu_user_features = 0xdc080000 0x00000000
Sep 19 11:12:18 Lubuntu-G5 kernel: mmu_features      = 0x0c000001
Sep 19 11:12:18 Lubuntu-G5 kernel: firmware_features = 0x0000000000000000
Sep 19 11:12:18 Lubuntu-G5 kernel: htab_address      = 0xc00000017c000000
Sep 19 11:12:18 Lubuntu-G5 kernel: htab_hash_mask    = 0x7ffff
Sep 19 11:12:18 Lubuntu-G5 kernel: -----------------------------------------------------
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys cpuset
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys cpu
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys cpuacct
Sep 19 11:12:18 Lubuntu-G5 kernel: Linux version 4.4.0-9136-powerpc64-smp (buildd@denneed03) (gcc version 5.4.1 20160803 (Ubuntu 5.4.1-1ubuntu2) ) #55-Ubuntu SMP Fri Aug 26 06:18:46 UTC 2016 (Ubuntu 4.4.0-9136.55-powerpc64-smp 4.4.16)
Sep 19 11:12:18 Lubuntu-G5 kernel: Top of RAM: 0x180000000, Total RAM: 0x100000000
Sep 19 11:12:18 Lubuntu-G5 kernel: Memory hole size: 2048MB
Sep 19 11:12:18 Lubuntu-G5 kernel: numa: Initmem setup node 0 [mem 0x00000000-0x17fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: numa:   NODE_DATA [mem 0x16efc5b00-0x16efcffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: Found U3-AGP PCI host bridge.  Firmware bus number: 240->255
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI host bridge /pci@0,f0000000  ranges:
Sep 19 11:12:18 Lubuntu-G5 kernel:  MEM 0x00000000f1000000..0x00000000f1ffffff -> 0x00000000f1000000 
Sep 19 11:12:18 Lubuntu-G5 kernel:   IO 0x00000000f0000000..0x00000000f07fffff -> 0x0000000000000000
Sep 19 11:12:18 Lubuntu-G5 kernel:  MEM 0x00000000a0000000..0x00000000bfffffff -> 0x00000000a0000000 
Sep 19 11:12:18 Lubuntu-G5 kernel: Can't get bus-range for /ht@0,f2000000, assume bus 0
Sep 19 11:12:18 Lubuntu-G5 kernel: Found U3-HT PCI host bridge.  Firmware bus number: 0->239
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI host bridge /ht@0,f2000000 (primary) ranges:
Sep 19 11:12:18 Lubuntu-G5 kernel: via-pmu: Server Mode is disabled
Sep 19 11:12:18 Lubuntu-G5 kernel: PMU driver v2 initialized for Core99, firmware: 0c
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: Checking bank 0...
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: gen0=893, gen1=892
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: Active bank is: 0
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: OF partition at 0x410
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: XP partition at 0x1020
Sep 19 11:12:18 Lubuntu-G5 kernel: nvram: NR partition at 0x1120
Sep 19 11:12:18 Lubuntu-G5 kernel: Top of RAM: 0x180000000, Total RAM: 0x100000000
Sep 19 11:12:18 Lubuntu-G5 kernel: Memory hole size: 2048MB
Sep 19 11:12:18 Lubuntu-G5 kernel: Zone ranges:
Sep 19 11:12:18 Lubuntu-G5 kernel:   DMA      [mem 0x0000000000000000-0x000000017fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel:   DMA32    empty
Sep 19 11:12:18 Lubuntu-G5 kernel:   Normal   empty
Sep 19 11:12:18 Lubuntu-G5 kernel: Movable zone start for each node
Sep 19 11:12:18 Lubuntu-G5 kernel: Early memory node ranges
Sep 19 11:12:18 Lubuntu-G5 kernel:   node   0: [mem 0x0000000000000000-0x000000007fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel:   node   0: [mem 0x0000000100000000-0x000000017fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: Initmem setup node 0 [mem 0x0000000000000000-0x000000017fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: On node 0 totalpages: 1048576
Sep 19 11:12:18 Lubuntu-G5 kernel:   DMA zone: 16384 pages used for memmap
Sep 19 11:12:18 Lubuntu-G5 kernel:   DMA zone: 0 pages reserved
Sep 19 11:12:18 Lubuntu-G5 kernel:   DMA zone: 1048576 pages, LIFO batch:31
Sep 19 11:12:18 Lubuntu-G5 kernel: PERCPU: Embedded 26 pages/cpu @c00000016ee00000 s68248 r0 d38248 u524288
Sep 19 11:12:18 Lubuntu-G5 kernel: pcpu-alloc: s68248 r0 d38248 u524288 alloc=1*1048576
Sep 19 11:12:18 Lubuntu-G5 kernel: pcpu-alloc: [0] 0 1 
Sep 19 11:12:18 Lubuntu-G5 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1032192
Sep 19 11:12:18 Lubuntu-G5 kernel: Policy zone: DMA
Sep 19 11:12:18 Lubuntu-G5 kernel: Kernel command line: root=UUID=1fcb24f9-00eb-4ef8-9b35-4a93a92e0a03 ro quiet splash 
Sep 19 11:12:18 Lubuntu-G5 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: Sorting __ex_table...
Sep 19 11:12:18 Lubuntu-G5 kernel: Memory: 3700464K/4194304K available (11152K kernel code, 2056K rwdata, 4480K rodata, 8668K init, 2402K bss, 280848K reserved, 212992K cma-reserved)
Sep 19 11:12:18 Lubuntu-G5 kernel: SLUB: HWalign=128, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Sep 19 11:12:18 Lubuntu-G5 kernel: Hierarchical RCU implementation.
Sep 19 11:12:18 Lubuntu-G5 kernel:         Build-time adjustment of leaf fanout to 64.
Sep 19 11:12:18 Lubuntu-G5 kernel:         RCU restricting CPUs from NR_CPUS=1024 to nr_cpu_ids=2.
Sep 19 11:12:18 Lubuntu-G5 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=2
Sep 19 11:12:18 Lubuntu-G5 kernel: NR_IRQS:512 nr_irqs:512 16
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Resetting
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Setting up MPIC " MPIC 1   " version 1.2 at 80040000, max 2 CPUs
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: ISU size: 120, shift: 7, mask: 7f
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Initializing for 120 sources
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Resetting
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Setting up MPIC " MPIC 2   " version 1.2 at f8040000, max 2 CPUs
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: ISU size: 120, shift: 7, mask: 7f
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: Initializing for 120 sources
Sep 19 11:12:18 Lubuntu-G5 kernel: /u3@0,f8000000/mpic@f8040000: hooking up to IRQ 56
Sep 19 11:12:18 Lubuntu-G5 kernel: time_init: decrementer frequency = 33.333333 MHz
Sep 19 11:12:18 Lubuntu-G5 kernel: time_init: processor frequency   = 2000.000000 MHz
Sep 19 11:12:18 Lubuntu-G5 kernel: clocksource: timebase: mask: 0xffffffffffffffff max_cycles: 0x7b00c4bad, max_idle_ns: 440795202744 ns
Sep 19 11:12:18 Lubuntu-G5 kernel: clocksource: timebase mult[1e000005] shift[24] registered
Sep 19 11:12:18 Lubuntu-G5 kernel: clockevent: decrementer mult[8888887] shift[32] cpu[0]
Sep 19 11:12:18 Lubuntu-G5 kernel: Console: colour dummy device 80x25
Sep 19 11:12:18 Lubuntu-G5 kernel: console [tty0] enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: bootconsole [udbg0] disabled
Sep 19 11:12:18 Lubuntu-G5 kernel: pid_max: default: 32768 minimum: 301
Sep 19 11:12:18 Lubuntu-G5 kernel: Security Framework initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: Yama: becoming mindful.
Sep 19 11:12:18 Lubuntu-G5 kernel: AppArmor: AppArmor initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys io
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys memory
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys devices
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys freezer
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys net_cls
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys perf_event
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys net_prio
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys hugetlb
Sep 19 11:12:18 Lubuntu-G5 kernel: Initializing cgroup subsys pids
Sep 19 11:12:18 Lubuntu-G5 kernel: ftrace: allocating 29332 entries in 173 pages
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac SMP probe found 2 cpus
Sep 19 11:12:18 Lubuntu-G5 kernel: KeyWest i2c @0xf8001003 irq 42 /u3@0,f8000000/i2c@f8001000
Sep 19 11:12:18 Lubuntu-G5 kernel:  channel 0 bus <multibus>
Sep 19 11:12:18 Lubuntu-G5 kernel:  channel 1 bus <multibus>
Sep 19 11:12:18 Lubuntu-G5 kernel: KeyWest i2c @0x80018000 irq 26 /ht@0,f2000000/pci@3/mac-io@7/i2c@18000
Sep 19 11:12:18 Lubuntu-G5 kernel:  channel 0 bus <multibus>
Sep 19 11:12:18 Lubuntu-G5 kernel: PMU i2c /ht@0,f2000000/pci@3/mac-io@7/via-pmu@16000/pmu-i2c
Sep 19 11:12:18 Lubuntu-G5 kernel:  channel 1 bus <multibus>
Sep 19 11:12:18 Lubuntu-G5 kernel:  channel 2 bus <multibus>
Sep 19 11:12:18 Lubuntu-G5 kernel: Processor timebase sync using Cypress i2c clock
Sep 19 11:12:18 Lubuntu-G5 kernel: mpic: requesting IPIs...
Sep 19 11:12:18 Lubuntu-G5 kernel: PPC970/FX/MP performance monitor hardware support registered
Sep 19 11:12:18 Lubuntu-G5 kernel: Brought up 2 CPUs
Sep 19 11:12:18 Lubuntu-G5 kernel: devtmpfs: initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.selinux
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.SMACK64
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.SMACK64EXEC
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.SMACK64TRANSMUTE
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.SMACK64MMAP
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.ima
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: security.capability
Sep 19 11:12:18 Lubuntu-G5 kernel: EEH: devices created
Sep 19 11:12:18 Lubuntu-G5 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 19 11:12:18 Lubuntu-G5 kernel: NET: Registered protocol family 16
Sep 19 11:12:18 Lubuntu-G5 kernel: eeh_init: Platform EEH operation not found
Sep 19 11:12:18 Lubuntu-G5 kernel: cpuidle: using governor ladder
Sep 19 11:12:18 Lubuntu-G5 kernel: cpuidle: using governor menu
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI: Probing PCI hardware
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI host bridge to bus fc6c:f0
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: root bus resource [io  0x10000-0x80ffff] (bus address [0x0000-0x7fffff])
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: root bus resource [mem 0xf1000000-0xf1ffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: root bus resource [mem 0xa0000000-0xbfffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: root bus resource [bus f0-ff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: busn_res: [bus f0-ff] end is updated to ff
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:0b.0: [106b:004b] type 00 class 0x060000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: [1002:4150] type 00 class 0x030000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: reg 0x10: [mem 0xb0000000-0xbfffffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: reg 0x14: [io  0x10400-0x104ff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: reg 0x18: [mem 0xa0000000-0xa000ffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: reg 0x30: [mem 0xa0020000-0xa003ffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci fc6c:f0:10.0: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: IOMMU table initialized, virtual merging enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: busn_res: [bus f0-ff] end is updated to f0
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI host bridge to bus 7c70:00
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: root bus resource [io  0x811000-0xc10fff] (bus address [0x0000-0x3fffff])
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: root bus resource [mem 0xfa000000-0xffffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: root bus resource [mem 0x80000000-0x9fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: root bus resource [mem 0xc0000000-0xefffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: root bus resource [bus 00-ef]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: busn_res: [bus 00-ef] end is updated to ff
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:00.0: [106b:004a] type 00 class 0x060000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:01.0: [1022:7450] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0: [1022:7450] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0: [106b:0045] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0: [106b:0046] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0: [106b:0047] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0: [106b:0048] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0: [106b:0049] type 01 class 0x060400
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:01.0: PCI bridge to [bus 06]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: [8086:1229] type 00 class 0x020000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: reg 0x10: [mem 0x90000000-0x90000fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: reg 0x14: [io  0x811000-0x81103f]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: reg 0x18: [mem 0x90200000-0x902fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: reg 0x30: [mem 0x90100000-0x901fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0: PCI bridge to [bus 07]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0:   bridge window [io  0x811000-0x811fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:07.0: [106b:0041] type 00 class 0xff0000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:07.0: reg 0x10: [mem 0x80000000-0x8007ffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:08.0: [106b:0040] type 00 class 0x0c0310
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:08.0: reg 0x10: [mem 0x80081000-0x80081fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:09.0: [106b:0040] type 00 class 0x0c0310
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:09.0: reg 0x10: [mem 0x80080000-0x80080fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0: PCI bridge to [bus 01]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.0: [1033:0035] type 00 class 0x0c0310
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.0: reg 0x10: [mem 0x80102000-0x80102fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.0: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.1: [1033:0035] type 00 class 0x0c0310
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.1: reg 0x10: [mem 0x80101000-0x80101fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.1: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.1: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.2: [1033:00e0] type 00 class 0x0c0320
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.2: reg 0x10: [mem 0x80100000-0x801000ff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.2: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.2: PME# supported from D0 D1 D2 D3hot D3cold
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0: PCI bridge to [bus 02]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0d.0: [106b:0043] type 00 class 0xff0000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0d.0: reg 0x10: [mem 0x80204000-0x80207fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0e.0: [106b:0042] type 00 class 0x0c0010
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0e.0: reg 0x10: [mem 0x80200000-0x80200fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0e.0: supports D1 D2
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:03:0e.0: PME# supported from D0 D1 D2 D3hot
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0: PCI bridge to [bus 03]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:04:0f.0: [106b:004c] type 00 class 0x020000
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:04:0f.0: reg 0x10: [mem 0x80400000-0x805fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:04:0f.0: reg 0x30: [mem 0x80300000-0x803fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0: PCI bridge to [bus 04]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: [1166:0240] type 00 class 0x01018f
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x10: [io  0x811000-0x811007]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x14: [io  0x811000-0x811003]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x18: [io  0x811000-0x811007]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x1c: [io  0x811000-0x811003]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x20: [io  0x811000-0x81100f]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:05:0c.0: reg 0x24: [mem 0x80600000-0x80601fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0: PCI bridge to [bus 05]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0:   bridge window [mem 0x00000000-0x000fffff pref]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: busn_res: [bus 00-ff] end is updated to 07
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI fc6c:f0 Cannot reserve Legacy IO [io  0x10000-0x10fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI 7c70:00 Cannot reserve Legacy IO [io  0x811000-0x811fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: resource 4 [io  0x10000-0x80ffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: resource 5 [mem 0xf1000000-0xf1ffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus fc6c:f0: resource 6 [mem 0xa0000000-0xbfffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:01.0: PCI bridge to [bus 06]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:07:04.0: BAR 1: assigned [io  0x811000-0x81103f]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0: PCI bridge to [bus 07]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0:   bridge window [io  0x811000-0x811fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0:   bridge window [mem 0x90000000-0x902fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0: PCI bridge to [bus 01]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:03.0:   bridge window [mem 0x80000000-0x800fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0: PCI bridge to [bus 02]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:04.0:   bridge window [mem 0x80100000-0x801fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0: PCI bridge to [bus 03]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:05.0:   bridge window [mem 0x80200000-0x802fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0: PCI bridge to [bus 04]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:06.0:   bridge window [mem 0x80300000-0x805fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0: PCI bridge to [bus 05]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:07.0:   bridge window [mem 0x80600000-0x806fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: resource 4 [io  0x811000-0xc10fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: resource 5 [mem 0xfa000000-0xffffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: resource 6 [mem 0x80000000-0x9fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:00: resource 7 [mem 0xc0000000-0xefffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:07: resource 0 [io  0x811000-0x811fff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:07: resource 1 [mem 0x90000000-0x902fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:01: resource 1 [mem 0x80000000-0x800fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:02: resource 1 [mem 0x80100000-0x801fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:03: resource 1 [mem 0x80200000-0x802fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:04: resource 1 [mem 0x80300000-0x805fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_bus 7c70:05: resource 1 [mem 0x80600000-0x806fffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI: Probing PCI hardware done
Sep 19 11:12:18 Lubuntu-G5 kernel: vgaarb: device added: PCI:fc6c:f0:10.0,decodes=io+mem,owns=mem,locks=none
Sep 19 11:12:18 Lubuntu-G5 kernel: vgaarb: loaded
Sep 19 11:12:18 Lubuntu-G5 kernel: vgaarb: bridge control possible fc6c:f0:10.0
Sep 19 11:12:18 Lubuntu-G5 kernel: SCSI subsystem initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: libata version 3.00 loaded.
Sep 19 11:12:18 Lubuntu-G5 kernel: usbcore: registered new interface driver usbfs
Sep 19 11:12:18 Lubuntu-G5 kernel: usbcore: registered new interface driver hub
Sep 19 11:12:18 Lubuntu-G5 kernel: usbcore: registered new device driver usb
Sep 19 11:12:18 Lubuntu-G5 kernel: NetLabel: Initializing
Sep 19 11:12:18 Lubuntu-G5 kernel: NetLabel:  domain hash size = 128
Sep 19 11:12:18 Lubuntu-G5 kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Sep 19 11:12:18 Lubuntu-G5 kernel: NetLabel:  unlabeled traffic allowed by default
Sep 19 11:12:18 Lubuntu-G5 kernel: clocksource: Switched to clocksource timebase
Sep 19 11:12:18 Lubuntu-G5 kernel: AppArmor: AppArmor Filesystem Enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: NET: Registered protocol family 2
Sep 19 11:12:18 Lubuntu-G5 kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: TCP: Hash tables configured (established 32768 bind 32768)
Sep 19 11:12:18 Lubuntu-G5 kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: NET: Registered protocol family 1
Sep 19 11:12:18 Lubuntu-G5 kernel: PCI: CLS mismatch (32 != 64), using 128 bytes
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:01.0: MSI quirk detected; subordinate MSI disabled
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:01.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0: MSI quirk detected; subordinate MSI disabled
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:00:02.0: AMD8131 rev 12 detected; disabling PCI-X MMRBC
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:08.0: enabling device (0000 -> 0002)
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:01:09.0: enabling device (0000 -> 0002)
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.0: enabling device (0000 -> 0002)
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.1: enabling device (0000 -> 0002)
Sep 19 11:12:18 Lubuntu-G5 kernel: pci 7c70:02:0b.2: enabling device (0004 -> 0006)
Sep 19 11:12:18 Lubuntu-G5 kernel: Trying to unpack rootfs image as initramfs...
Sep 19 11:12:18 Lubuntu-G5 kernel: Freeing initrd memory: 37536K (c000000002900000 - c000000004da8000)
Sep 19 11:12:18 Lubuntu-G5 kernel: futex hash table entries: 512 (order: 4, 65536 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: audit: initializing netlink subsys (disabled)
Sep 19 11:12:18 Lubuntu-G5 kernel: audit: type=2000 audit(1474308731.611:1): initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: Initialise system trusted keyring
Sep 19 11:12:18 Lubuntu-G5 kernel: HugeTLB registered 16 MB page size, pre-allocated 0 pages
Sep 19 11:12:18 Lubuntu-G5 kernel: zbud: loaded
Sep 19 11:12:18 Lubuntu-G5 kernel: VFS: Disk quotas dquot_6.6.0
Sep 19 11:12:18 Lubuntu-G5 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Sep 19 11:12:18 Lubuntu-G5 kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 19 11:12:18 Lubuntu-G5 kernel: fuse init (API version 7.23)
Sep 19 11:12:18 Lubuntu-G5 kernel: Key type big_key registered
Sep 19 11:12:18 Lubuntu-G5 kernel: Allocating IMA MOK and blacklist keyrings.
Sep 19 11:12:18 Lubuntu-G5 kernel: Key type asymmetric registered
Sep 19 11:12:18 Lubuntu-G5 kernel: Asymmetric key parser 'x509' registered
Sep 19 11:12:18 Lubuntu-G5 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 19 11:12:18 Lubuntu-G5 kernel: io scheduler noop registered
Sep 19 11:12:18 Lubuntu-G5 kernel: io scheduler deadline registered (default)
Sep 19 11:12:18 Lubuntu-G5 kernel: io scheduler cfq registered
Sep 19 11:12:18 Lubuntu-G5 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Sep 19 11:12:18 Lubuntu-G5 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Sep 19 11:12:18 Lubuntu-G5 kernel: Using unsupported 1920x1080 ATY,Simone_A at b8008000, depth=8, pitch=2048
Sep 19 11:12:18 Lubuntu-G5 kernel: Console: switching to colour frame buffer device 240x67
Sep 19 11:12:18 Lubuntu-G5 kernel: fb0: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_A@0
Sep 19 11:12:18 Lubuntu-G5 kernel: Using unsupported 640x480 ATY,Simone_B at b2008000, depth=8, pitch=768
Sep 19 11:12:18 Lubuntu-G5 kernel: checking generic (b8008000 21c000) vs hw (b2008000 5a000)
Sep 19 11:12:18 Lubuntu-G5 kernel: fb1: Open Firmware frame buffer device on /pci@0,f0000000/ATY,SimoneParent@10/ATY,Simone_B@1
Sep 19 11:12:18 Lubuntu-G5 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: pmac_zilog: 0.6 (Benjamin Herrenschmidt <benh@kernel.crashing.org>)
Sep 19 11:12:18 Lubuntu-G5 kernel: Linux agpgart interface v0.103
Sep 19 11:12:18 Lubuntu-G5 kernel: brd: module loaded
Sep 19 11:12:18 Lubuntu-G5 kernel: loop: module loaded
Sep 19 11:12:18 Lubuntu-G5 kernel: MacIO PCI driver attached to K2 chipset
Sep 19 11:12:18 Lubuntu-G5 kernel: 0.00013020:ch-a: ttyPZ0 at MMIO 0x80013020 (irq = 22, base_baud = 230400) is a Z85c30 ESCC - Serial port
Sep 19 11:12:18 Lubuntu-G5 kernel: 0.00013000:ch-b: ttyPZ1 at MMIO 0x80013000 (irq = 23, base_baud = 230400) is a Z85c30 ESCC - Serial port
Sep 19 11:12:18 Lubuntu-G5 kernel: sata_svw 7c70:05:0c.0: version 2.3
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi host0: sata_svw
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi host1: sata_svw
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi host2: sata_svw
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi host3: sata_svw
Sep 19 11:12:18 Lubuntu-G5 kernel: ata1: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600000 irq 16
Sep 19 11:12:18 Lubuntu-G5 kernel: ata2: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600100 irq 16
Sep 19 11:12:18 Lubuntu-G5 kernel: ata3: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600200 irq 16
Sep 19 11:12:18 Lubuntu-G5 kernel: ata4: SATA max UDMA/133 mmio m8192@0x80600000 port 0x80600300 irq 16
Sep 19 11:12:18 Lubuntu-G5 kernel: pata-pci-macio 7c70:03:0d.0: enabling device (0014 -> 0016)
Sep 19 11:12:18 Lubuntu-G5 kernel: pata-pci-macio 7c70:03:0d.0: Activating pata-macio chipset K2 ATA-6, Apple bus ID 3
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi host4: pata_macio
Sep 19 11:12:18 Lubuntu-G5 kernel: ata5: PATA max UDMA/100 irq 39
Sep 19 11:12:18 Lubuntu-G5 kernel: libphy: Fixed MDIO Bus: probed
Sep 19 11:12:18 Lubuntu-G5 kernel: tun: Universal TUN/TAP device driver, 1.6
Sep 19 11:12:18 Lubuntu-G5 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 19 11:12:18 Lubuntu-G5 kernel: PPP generic driver version 2.4.2
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-pci: EHCI PCI platform driver
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-pci 7c70:02:0b.2: EHCI Host Controller
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-pci 7c70:02:0b.2: new USB bus registered, assigned bus number 1
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-pci 7c70:02:0b.2: irq 63, io mem 0x80100000
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-pci 7c70:02:0b.2: USB 2.0 started, EHCI 1.00
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb1: Product: EHCI Host Controller
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb1: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ehci_hcd
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb1: SerialNumber: 7c70:02:0b.2
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 1-0:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 1-0:1.0: 5 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ehci-platform: EHCI generic platform driver
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci: OHCI PCI platform driver
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:08.0: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:08.0: new USB bus registered, assigned bus number 2
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:08.0: irq 27, io mem 0x80081000
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb2: Product: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb2: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb2: SerialNumber: 7c70:01:08.0
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 2-0:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 2-0:1.0: 2 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:09.0: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:09.0: new USB bus registered, assigned bus number 3
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:01:09.0: irq 28, io mem 0x80080000
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb3: Product: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb3: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb3: SerialNumber: 7c70:01:09.0
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 3-0:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 3-0:1.0: 2 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ata5.00: ATAPI: HL-DT-ST RW/DVD GCC-4480B, 1.03, max UDMA/33
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.0: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.0: new USB bus registered, assigned bus number 4
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.0: irq 63, io mem 0x80102000
Sep 19 11:12:18 Lubuntu-G5 kernel: ata5.00: configured for UDMA/33
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb4: Product: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb4: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb4: SerialNumber: 7c70:02:0b.0
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 4-0:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 4-0:1.0: 3 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.1: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.1: new USB bus registered, assigned bus number 5
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-pci 7c70:02:0b.1: irq 63, io mem 0x80101000
Sep 19 11:12:18 Lubuntu-G5 kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Sep 19 11:12:18 Lubuntu-G5 kernel: ata1.00: ATA-6: ST3160023AS, 3.05, max UDMA/133
Sep 19 11:12:18 Lubuntu-G5 kernel: ata1.00: 312581808 sectors, multi 16: LBA48 
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb5: Product: OHCI PCI host controller
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb5: Manufacturer: Linux 4.4.0-9136-powerpc64-smp ohci_hcd
Sep 19 11:12:18 Lubuntu-G5 kernel: usb usb5: SerialNumber: 7c70:02:0b.1
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 5-0:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 5-0:1.0: 2 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ohci-platform: OHCI generic platform driver
Sep 19 11:12:18 Lubuntu-G5 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Sep 19 11:12:18 Lubuntu-G5 kernel: mousedev: PS/2 mouse device common for all mice
Sep 19 11:12:18 Lubuntu-G5 kernel: i2c /dev entries driver
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac i2c bus pmu 2 registered
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac i2c bus pmu 1 registered
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac i2c bus mac-io 0 registered
Sep 19 11:12:18 Lubuntu-G5 kernel: i2c i2c-2: No i2c address for /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/i2c-modem
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac i2c bus u3 1 registered
Sep 19 11:12:18 Lubuntu-G5 kernel: i2c i2c-3: i2c-powermac: modalias failure on /u3@0,f8000000/i2c@f8001000/cereal@1c0
Sep 19 11:12:18 Lubuntu-G5 kernel: PowerMac i2c bus u3 0 registered
Sep 19 11:12:18 Lubuntu-G5 kernel: device-mapper: uevent: version 1.0.3
Sep 19 11:12:18 Lubuntu-G5 kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 19 11:12:18 Lubuntu-G5 kernel: ata1.00: configured for UDMA/133
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi 0:0:0:0: Direct-Access     ATA      ST3160023AS      3.05 PQ: 0 ANSI: 5
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: [sda] 312581808 512-byte logical blocks: (160 GB/149 GiB)
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: [sda] Write Protect is off
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Sep 19 11:12:18 Lubuntu-G5 kernel:  sda: [mac] sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sda10
Sep 19 11:12:18 Lubuntu-G5 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Sep 19 11:12:18 Lubuntu-G5 kernel: Registering G5 CPU frequency driver
Sep 19 11:12:18 Lubuntu-G5 kernel: Frequency method: i2c/pfunc, Voltage method: i2c/pfunc
Sep 19 11:12:18 Lubuntu-G5 kernel: Low: 1304 Mhz, High: 2000 Mhz, Cur: 2000 MHz
Sep 19 11:12:18 Lubuntu-G5 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Sep 19 11:12:18 Lubuntu-G5 kernel: NET: Registered protocol family 10
Sep 19 11:12:18 Lubuntu-G5 kernel: NET: Registered protocol family 17
Sep 19 11:12:18 Lubuntu-G5 kernel: Key type dns_resolver registered
Sep 19 11:12:18 Lubuntu-G5 kernel: PM: Registered nosave memory: [mem 0x7f000000-0x7fffffff]
Sep 19 11:12:18 Lubuntu-G5 kernel: registered taskstats version 1
Sep 19 11:12:18 Lubuntu-G5 kernel: Loading compiled-in X.509 certificates
Sep 19 11:12:18 Lubuntu-G5 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 7d7f518658e77f47db84ef4aad2a1e9f2f0cfe65'
Sep 19 11:12:18 Lubuntu-G5 kernel: zswap: loaded using pool lzo/zbud
Sep 19 11:12:18 Lubuntu-G5 kernel: Key type trusted registered
Sep 19 11:12:18 Lubuntu-G5 kernel: Key type encrypted registered
Sep 19 11:12:18 Lubuntu-G5 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Sep 19 11:12:18 Lubuntu-G5 kernel: ima: No TPM chip found, activating TPM-bypass!
Sep 19 11:12:18 Lubuntu-G5 kernel: evm: HMAC attrs: 0x1
Sep 19 11:12:18 Lubuntu-G5 kernel: input: PMU as /devices/virtual/input/input0
Sep 19 11:12:18 Lubuntu-G5 kernel: hctosys: unable to open rtc device (rtc0)
Sep 19 11:12:18 Lubuntu-G5 kernel: PM: Hibernation image not present or could not be loaded.
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 4-1: new low-speed USB device number 2 using ohci-pci
Sep 19 11:12:18 Lubuntu-G5 kernel: ata2: SATA link down (SStatus 4 SControl 300)
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2: new full-speed USB device number 2 using ohci-pci
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 4-1: New USB device found, idVendor=0461, idProduct=4d81
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 4-1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 4-1: Product: USB Optical Mouse
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2: New USB device found, idVendor=413c, idProduct=1005
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2: Product: Dell Multimedia Pro Keyboard Hub
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2: Manufacturer: Dell
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 5-2:1.0: USB hub found
Sep 19 11:12:18 Lubuntu-G5 kernel: hub 5-2:1.0: 3 ports detected
Sep 19 11:12:18 Lubuntu-G5 kernel: ata3: SATA link down (SStatus 4 SControl 300)
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2.1: new low-speed USB device number 3 using ohci-pci
Sep 19 11:12:18 Lubuntu-G5 kernel: ata4: SATA link down (SStatus 4 SControl 300)
Sep 19 11:12:18 Lubuntu-G5 kernel: scsi 4:0:0:0: CD-ROM            HL-DT-ST RW/DVD GCC-4480B 1.03 PQ: 0 ANSI: 5
Sep 19 11:12:18 Lubuntu-G5 kernel: ata5.00: K2/Shasta alignment limits applied
Sep 19 11:12:18 Lubuntu-G5 kernel: sr 4:0:0:0: [sr0] scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
Sep 19 11:12:18 Lubuntu-G5 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Sep 19 11:12:18 Lubuntu-G5 kernel: sr 4:0:0:0: Attached scsi CD-ROM sr0
Sep 19 11:12:18 Lubuntu-G5 kernel: sr 4:0:0:0: Attached scsi generic sg1 type 5
Sep 19 11:12:18 Lubuntu-G5 kernel: Freeing unused kernel memory: 8668K (c000000000f4c000 - c0000000017c3000)
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2.1: New USB device found, idVendor=413c, idProduct=2011
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2.1: Product: Dell Multimedia Pro Keyboard
Sep 19 11:12:18 Lubuntu-G5 kernel: usb 5-2.1: Manufacturer: Dell
Sep 19 11:12:18 Lubuntu-G5 kernel: random: systemd-udevd urandom read with 26 bits of entropy available
Sep 19 11:12:18 Lubuntu-G5 kernel: agpgart-uninorth fc6c:f0:0b.0: Apple U3 chipset
Sep 19 11:12:18 Lubuntu-G5 kernel: agpgart-uninorth fc6c:f0:0b.0: configuring for size idx: 64
Sep 19 11:12:18 Lubuntu-G5 kernel: agpgart-uninorth fc6c:f0:0b.0: AGP aperture is 256M @ 0x0
Sep 19 11:12:18 Lubuntu-G5 kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
Sep 19 11:12:18 Lubuntu-G5 kernel: e100: Copyright(c) 1999-2006 Intel Corporation
Sep 19 11:12:18 Lubuntu-G5 kernel: e100 7c70:07:04.0: enabling device (0004 -> 0007)
Sep 19 11:12:18 Lubuntu-G5 kernel: sungem.c:v1.0 David S. Miller <davem@redhat.com>
Sep 19 11:12:18 Lubuntu-G5 kernel: gem 7c70:04:0f.0 eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:0a:95:bb:30:6c
Sep 19 11:12:18 Lubuntu-G5 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Initialized drm 1.1.0 20060810
Sep 19 11:12:18 Lubuntu-G5 kernel: e100 7c70:07:04.0 eth1: addr 0x90000000, irq 54, MAC addr 00:0e:0c:07:b3:47
Sep 19 11:12:18 Lubuntu-G5 kernel: firewire_ohci 7c70:03:0e.0: enabling device (0000 -> 0002)
Sep 19 11:12:18 Lubuntu-G5 kernel: usbcore: registered new interface driver usbhid
Sep 19 11:12:18 Lubuntu-G5 kernel: usbhid: USB HID core driver
Sep 19 11:12:18 Lubuntu-G5 kernel: rtc-generic rtc-generic: rtc core: registered rtc-generic as rtc0
Sep 19 11:12:18 Lubuntu-G5 kernel: firewire_ohci 7c70:03:0e.0: added OHCI v1.0 device as card 0, 8 IR + 8 IT contexts, quirks 0x0
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon kernel modesetting enabled.
Sep 19 11:12:18 Lubuntu-G5 kernel: checking generic (b8008000 21c000) vs hw (b0000000 10000000)
Sep 19 11:12:18 Lubuntu-G5 kernel: fb: switching to radeondrmfb from OFfb ATY,Simone
Sep 19 11:12:18 Lubuntu-G5 kernel: Console: switching to colour dummy device 80x25
Sep 19 11:12:18 Lubuntu-G5 kernel: checking generic (b2008000 5a000) vs hw (b0000000 10000000)
Sep 19 11:12:18 Lubuntu-G5 kernel: fb: switching to radeondrmfb from OFfb ATY,Simone
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: enabling device (0006 -> 0007)
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] initializing kernel modesetting (RV350 0x1002:0x4150 0x1002:0x4150).
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] register mmio base: 0xA0000000
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] register mmio size: 65536
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: Invalid ROM contents
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Not an x86 BIOS ROM, not using.
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Using device-tree clock info
Sep 19 11:12:18 Lubuntu-G5 kernel: agpgart-uninorth fc6c:f0:0b.0: putting AGP V3 device into 8x mode
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: putting AGP V3 device into 8x mode
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: GTT: 256M 0x00000000 - 0x0FFFFFFF
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Generation 2 PCI interface, using max accessible memory
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: VRAM: 256M 0x00000000B0000000 - 0x00000000BFFFFFFF (64M used)
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Detected VRAM RAM=256M, BAR=256M
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] RAM width 128bits DDR
Sep 19 11:12:18 Lubuntu-G5 kernel: [TTM] Zone  kernel: Available graphics memory: 2013316 kiB
Sep 19 11:12:18 Lubuntu-G5 kernel: [TTM] Initializing pool allocator
Sep 19 11:12:18 Lubuntu-G5 kernel: [TTM] Initializing DMA pool allocator
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon: 64M of VRAM memory ready
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon: 256M of GTT memory ready.
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: WB disabled
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: fence driver on ring 0 use gpu addr 0x0000000000000000 and cpu addr 0xd00000000128f000
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Driver supports precise vblank timestamp query.
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon: irq initialized.
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Loading R300 Microcode
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] radeon: ring at 0x0000000000001000
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] ring test succeeded in 0 usecs
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] ib test succeeded in 0 usecs
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Connector Table: 12 (mac g5 9600)
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] No valid Ext TMDS info found in BIOS
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] No TV DAC info found in BIOS
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] No TMDS info found in BIOS
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Radeon Display Connectors
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Connector 0:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   DVI-I-1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   HPD1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   Encoders:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]     DFP2: INTERNAL_DVO1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]     CRT2: INTERNAL_DAC2
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Connector 1:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   DVI-I-2
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   HPD2
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   Encoders:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]     DFP1: INTERNAL_TMDS1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]     CRT1: INTERNAL_DAC1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Connector 2:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   SVIDEO-1
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]   Encoders:
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]     TV1: INTERNAL_DAC2
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] fb mappable at 0xB0040000
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] vram apper at 0xB0000000
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] size 8294400
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] fb depth is 24
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm]    pitch is 7680
Sep 19 11:12:18 Lubuntu-G5 kernel: Console: switching to colour frame buffer device 240x67
Sep 19 11:12:18 Lubuntu-G5 kernel: gem 7c70:04:0f.0 enP31856p4s15f0: renamed from eth0
Sep 19 11:12:18 Lubuntu-G5 kernel: radeon fc6c:f0:10.0: fb0: radeondrmfb frame buffer device
Sep 19 11:12:18 Lubuntu-G5 kernel: [drm] Initialized radeon 2.43.0 20080528 for fc6c:f0:10.0 on minor 0
Sep 19 11:12:18 Lubuntu-G5 kernel: e100 7c70:07:04.0 enP31856p7s4: renamed from eth1
Sep 19 11:12:18 Lubuntu-G5 kernel: input: USB Optical Mouse as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.0/usb4/4-1/4-1:1.0/0003:0461:4D81.0001/input/input1
Sep 19 11:12:18 Lubuntu-G5 kernel: hid-generic 0003:0461:4D81.0001: input,hidraw0: USB HID v1.11 Mouse [USB Optical Mouse] on usb-7c70:02:0b.0-1/input0
Sep 19 11:12:18 Lubuntu-G5 kernel: input: Dell Dell Multimedia Pro Keyboard as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.0/0003:413C:2011.0002/input/input2
Sep 19 11:12:18 Lubuntu-G5 kernel: hid-generic 0003:413C:2011.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell Multimedia Pro Keyboard] on usb-7c70:02:0b.1-2.1/input0
Sep 19 11:12:18 Lubuntu-G5 kernel: input: Dell Dell Multimedia Pro Keyboard as /devices/pci7c70:00/7c70:00:04.0/7c70:02:0b.1/usb5/5-2/5-2.1/5-2.1:1.1/0003:413C:2011.0003/input/input3
Sep 19 11:12:18 Lubuntu-G5 kernel: hid-generic 0003:413C:2011.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell Multimedia Pro Keyboard] on usb-7c70:02:0b.1-2.1/input1
Sep 19 11:12:18 Lubuntu-G5 kernel: firewire_core 7c70:03:0e.0: created device fw0: GUID 000a95fffebb306c, S800
Sep 19 11:12:18 Lubuntu-G5 kernel: random: nonblocking pool is initialized
Sep 19 11:12:18 Lubuntu-G5 kernel: EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
Sep 19 11:12:18 Lubuntu-G5 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Sep 19 11:12:18 Lubuntu-G5 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Sep 19 11:12:18 Lubuntu-G5 systemd[1]: Started Create list of required static device nodes for the current kernel.
Sep 19 11:12:19 Lubuntu-G5 kernel: lp: driver loaded but no devices found
Sep 19 11:12:19 Lubuntu-G5 kernel: ppdev: user-space parallel port driver
Sep 19 11:12:21 Lubuntu-G5 kernel: EXT4-fs (sda9): re-mounted. Opts: errors=remount-ro
Sep 19 11:12:22 Lubuntu-G5 kernel: snd-aoa-fabric-layout: Using PMF GPIOs
Sep 19 11:12:22 Lubuntu-G5 kernel: snd-aoa-fabric-layout: can use this codec
Sep 19 11:12:22 Lubuntu-G5 kernel: snd-aoa-codec-tas: tas found, addr 0x35 on /ht@0,f2000000/pci@3/mac-io@7/i2c@18000/deq@6a
Sep 19 11:12:22 Lubuntu-G5 kernel: snd-powermac no longer handles any machines with a layout-id property in the device-tree, use snd-aoa.
Sep 19 11:12:22 Lubuntu-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:12:22 Lubuntu-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:12:22 Lubuntu-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:12:22 Lubuntu-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:12:22 Lubuntu-G5 kernel: Attempt to iounmap early bolted mapping at 0x          (null)
Sep 19 11:12:22 Lubuntu-G5 kernel: shpchp 7c70:00:01.0: HPC vendor_id 1022 device_id 7450 ss_vid 0 ss_did 0
Sep 19 11:12:22 Lubuntu-G5 kernel: shpchp 7c70:00:01.0: Cannot reserve MMIO region
Sep 19 11:12:22 Lubuntu-G5 kernel: shpchp 7c70:00:02.0: HPC vendor_id 1022 device_id 7450 ss_vid 0 ss_did 0
Sep 19 11:12:22 Lubuntu-G5 kernel: shpchp 7c70:00:02.0: Cannot reserve MMIO region
Sep 19 11:12:22 Lubuntu-G5 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Sep 19 11:12:23 Lubuntu-G5 kernel: EDAC MC: Ver: 3.0.0
Sep 19 11:12:23 Lubuntu-G5 kernel: AMD8131 EDAC driver  Ver: 1.0.0
Sep 19 11:12:23 Lubuntu-G5 kernel:         (c) 2008 Wind River Systems, Inc.
Sep 19 11:12:23 Lubuntu-G5 kernel: EDAC PCI0: Giving out device to module amd8131_edac controller AMD8131_PCIX_NORTH_A: DEV 7c70:00:01.0 (POLLED)
Sep 19 11:12:23 Lubuntu-G5 kernel: added one device on AMD8131 vendor 1022, device 7451, devfn 8, name AMD8131_PCIX_NORTH_A
Sep 19 11:12:23 Lubuntu-G5 kernel: EDAC PCI1: Giving out device to module amd8131_edac controller AMD8131_PCIX_NORTH_B: DEV 7c70:00:02.0 (POLLED)
Sep 19 11:12:23 Lubuntu-G5 kernel: added one device on AMD8131 vendor 1022, device 7451, devfn 10, name AMD8131_PCIX_NORTH_B
Sep 19 11:12:23 Lubuntu-G5 kernel: windfarm: Initializing for desktop G5 with 2 chips
Sep 19 11:12:23 Lubuntu-G5 kernel: windfarm: CPUs control loops started.
Sep 19 11:12:23 Lubuntu-G5 kernel: wf_pm72: Backside control loop started.
Sep 19 11:12:23 Lubuntu-G5 kernel: wf_pm72: Drive bay control loop started.
Sep 19 11:12:26 Lubuntu-G5 kernel: Adding 3145724k swap on /dev/sda3.  Priority:-1 extents:1 across:3145724k FS
Sep 19 11:12:26 Lubuntu-G5 kernel: Adding 1999996k swap on /dev/sda7.  Priority:-2 extents:1 across:1999996k FS
Sep 19 11:12:29 Lubuntu-G5 kernel: EXT4-fs (sda8): mounting ext2 file system using the ext4 subsystem
Sep 19 11:12:29 Lubuntu-G5 kernel: EXT4-fs (sda8): mounted filesystem without journal. Opts: (null)
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=591 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=591 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=591 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=591 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=590 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.191:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=590 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.215:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=594 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.223:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=595 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.223:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=595 comm="apparmor_parser"
Sep 19 11:12:31 Lubuntu-G5 kernel: audit: type=1400 audit(1474308751.223:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=595 comm="apparmor_parser"
Sep 19 11:12:32 Lubuntu-G5 sensors[666]: Make sure you loaded all the kernel drivers you need.
Sep 19 11:12:35 Lubuntu-G5 NetworkManager[665]: <info>  [1474308755.4076] manager[0x10322908]: monitoring kernel firmware directory '/lib/firmware'.
Sep 19 11:12:37 Lubuntu-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP31856p7s4: link is not ready
Sep 19 11:12:37 Lubuntu-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP31856p7s4: link is not ready
Sep 19 11:12:37 Lubuntu-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP31856p4s15f0: link is not ready
Sep 19 11:12:37 Lubuntu-G5 kernel: sungem_phy: PHY ID: 2062e0, addr: 1
Sep 19 11:12:37 Lubuntu-G5 kernel: gem 7c70:04:0f.0 enP31856p4s15f0: Found BCM5421-K2 PHY
Sep 19 11:12:37 Lubuntu-G5 kernel: IPv6: ADDRCONF(NETDEV_UP): enP31856p4s15f0: link is not ready
Sep 19 11:12:41 Lubuntu-G5 kernel: gem 7c70:04:0f.0 enP31856p4s15f0: Link is up at 1000 Mbps, full-duplex
Sep 19 11:12:41 Lubuntu-G5 kernel: gem 7c70:04:0f.0 enP31856p4s15f0: Pause is disabled
Sep 19 11:12:41 Lubuntu-G5 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enP31856p4s15f0: link becomes ready
Sep 19 11:13:26 Lubuntu-G5 kernel: gem 7c70:04:0f.0 enP31856p4s15f0: RX MAC fifo overflow smac[03810400]
Sep 19 11:13:50 Lubuntu-G5 systemd[1]: Startup finished in 5.959s (kernel) + 1min 35.707s (userspace) = 1min 41.667s.
rican-linux@Lubuntu-G5:~$ 

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-19 12:36           ` Mathieu Malaterre
@ 2016-09-20  3:05             ` Michel Dänzer
  2016-09-20  3:43               ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Michel Dänzer @ 2016-09-20  3:05 UTC (permalink / raw)
  To: Mathieu Malaterre, Herminio Hernandez, Jr.
  Cc: Mike, debian-powerpc, Aneesh Kumar K.V, Pranith Kumar,
	open list:LINUX FOR POWERPC...

On 19/09/16 09:36 PM, Mathieu Malaterre wrote:
> 
> Finally your dmesg looks odd since the line `[drm] Forcing AGP to PCI
> mode` comes only after the first error.

That isn't odd but the AGP->PCI(e) fallback mechanism working as
intended, trying AGP first and falling back to PCIe if AGP fails.

Herminio, does the problem also occur if you specify radeon.agpmode=-1
(or maybe =1) on the kernel command line?


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-20  3:05             ` Michel Dänzer
@ 2016-09-20  3:43               ` Herminio Hernandez, Jr.
  2016-09-20  6:20                 ` Michel Dänzer
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-09-20  3:43 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Mathieu Malaterre, Mike, debian-powerpc, Aneesh Kumar K.V,
	Pranith Kumar, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 3766 bytes --]

Michel,

Yes to both, however when I set radeon.agpmode=1 most of the time the
kernel freezes when booting. When I do get past that I get these errors:

rican-linux@Debian-G5:~$ dmesg |grep -e radeon -e drm
*[    0.000000] Kernel command line:
root=UUID=aeca9a67-31d7-4c4b-a0f8-4db328b33305  radeon.agpmode=1*
[   10.432049] [drm] Initialized drm 1.1.0 20060810
[   11.291427] [drm] radeon kernel modesetting enabled.
[   11.302838] fb: switching to radeondrmfb from OFfb ATY,Simone
[   11.317952] fb: switching to radeondrmfb from OFfb ATY,Simone
[   11.321318] radeon 0000:f0:10.0: enabling device (0006 -> 0007)
[   11.321741] [drm] initializing kernel modesetting (RV350 0x1002:0x4150
0x1002:0x4150 0x00).
[   11.321770] [drm] register mmio base: 0xA0000000
[   11.321776] [drm] register mmio size: 65536
[   11.321820] radeon 0000:f0:10.0: Invalid PCI ROM header signature:
expecting 0xaa55, got 0x0000
[   11.415530] [drm] Not an x86 BIOS ROM, not using.
[   11.415573] [drm] Using device-tree clock info
*[   11.415769] [drm:.radeon_agp_init [radeon]] *ERROR* Illegal AGP Mode: 1
(valid 4, 8), leaving at 8*
[   11.415818] radeon 0000:f0:10.0: putting AGP V3 device into 8x mode
[   11.415925] radeon 0000:f0:10.0: GTT: 256M 0x00000000 - 0x0FFFFFFF
[   11.415933] [drm] Generation 2 PCI interface, using max accessible memory
[   11.415943] radeon 0000:f0:10.0: VRAM: 256M 0x00000000B0000000 -
0x00000000BFFFFFFF (64M used)
[   11.415987] [drm] Detected VRAM RAM=256M, BAR=256M
[   11.415993] [drm] RAM width 128bits DDR
[   11.416229] [drm] radeon: 64M of VRAM memory ready
[   11.416237] [drm] radeon: 256M of GTT memory ready.
[   11.416308] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   11.431606] radeon 0000:f0:10.0: WB disabled
[   11.431627] radeon 0000:f0:10.0: fence driver on ring 0 use gpu addr
0x0000000000000000 and cpu addr 0xd000000003ee0000
[   11.431642] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   11.431648] [drm] Driver supports precise vblank timestamp query.
[   11.431700] [drm] radeon: irq initialized.
[   11.431743] [drm] Loading R300 Microcode
[   11.488921] radeon 0000:f0:10.0: firmware: direct-loading firmware
radeon/R300_cp.bin
[   11.489178] [drm] radeon: ring at 0x0000000000010000





*[   11.637210] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
failed (scratch(0x15E4)=0xCAFEDEAD)[   11.637318] [drm:.r100_cp_init
[radeon]] *ERROR* radeon: cp isn't working (-22).[   11.637331] radeon
0000:f0:10.0: failed initializing CP (-22).[   11.637338] radeon
0000:f0:10.0: Disabling GPU acceleration[   11.784325] [drm:.r100_cp_fini
[radeon]] *ERROR* Wait for CP idle timeout, shutting down CP.[   11.931351]
[drm] radeon: cp finalized*



*[   11.931464] radeon 0000:f0:10.0: (r300_asic_reset:425)
RBBM_STATUS=0x80010140[   12.431463] radeon 0000:f0:10.0:
(r300_asic_reset:444) RBBM_STATUS=0x80010140[   12.927471] radeon
0000:f0:10.0: (r300_asic_reset:456) RBBM_STATUS=0x00000140[   12.927510]
radeon 0000:f0:10.0: GPU reset succeed*



On Mon, Sep 19, 2016 at 8:05 PM, Michel Dänzer <michel@daenzer.net> wrote:

> On 19/09/16 09:36 PM, Mathieu Malaterre wrote:
> >
> > Finally your dmesg looks odd since the line `[drm] Forcing AGP to PCI
> > mode` comes only after the first error.
>
> That isn't odd but the AGP->PCI(e) fallback mechanism working as
> intended, trying AGP first and falling back to PCIe if AGP fails.
>
> Herminio, does the problem also occur if you specify radeon.agpmode=-1
> (or maybe =1) on the kernel command line?
>
>
> --
> Earthling Michel Dänzer               |               http://www.amd.com
> Libre software enthusiast             |             Mesa and X developer
>

[-- Attachment #2: Type: text/html, Size: 4466 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-20  3:43               ` Herminio Hernandez, Jr.
@ 2016-09-20  6:20                 ` Michel Dänzer
  2016-09-21  6:20                   ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Michel Dänzer @ 2016-09-20  6:20 UTC (permalink / raw)
  To: Herminio Hernandez, Jr.
  Cc: Mathieu Malaterre, Mike, debian-powerpc, Aneesh Kumar K.V,
	Pranith Kumar, open list:LINUX FOR POWERPC...

On 20/09/16 12:43 PM, Herminio Hernandez, Jr. wrote:
> 
> Yes to both, however when I set radeon.agpmode=1 most of the time the
> kernel freezes when booting. When I do get past that I get these errors:

[...]

> *[   11.415769] [drm:.radeon_agp_init [radeon]] *ERROR* Illegal AGP
> Mode: 1 (valid 4, 8), leaving at 8*

As you can see, AGP 1x isn't supported by your setup, only 4x or 8x. How
about radeon.agpmode=4?


-- 
Earthling Michel Dänzer               |               http://www.amd.com
Libre software enthusiast             |             Mesa and X developer

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-20  6:20                 ` Michel Dänzer
@ 2016-09-21  6:20                   ` Herminio Hernandez, Jr.
  2016-10-08 19:05                     ` Herminio Hernandez, Jr.
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-09-21  6:20 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Mathieu Malaterre, Mike, debian-powerpc, Aneesh Kumar K.V,
	Pranith Kumar, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 5228 bytes --]

I am still getting errors even with radeon.agpmode=4 is set

rican-linux@Debian-G5:~$ dmesg |grep -e radeom -e drm -e radeon.agpmode
[    0.000000] Kernel command line:
root=UUID=aeca9a67-31d7-4c4b-a0f8-4db328b33305  radeon.agpmode=4
[    9.734366] [drm] Initialized drm 1.1.0 20060810
[   10.934519] [drm] radeon kernel modesetting enabled.
[   10.943743] fb: switching to radeondrmfb from OFfb ATY,Simone
[   10.954622] fb: switching to radeondrmfb from OFfb ATY,Simone
[   10.956515] [drm] initializing kernel modesetting (RV350 0x1002:0x4150
0x1002:0x4150 0x00).
[   10.956552] [drm] register mmio base: 0xA0000000
[   10.956558] [drm] register mmio size: 65536
[   11.046327] [drm] Not an x86 BIOS ROM, not using.
[   11.046358] [drm] Using device-tree clock info
[   11.046369] [drm] AGP mode requested: 4
[   11.046528] [drm] Generation 2 PCI interface, using max accessible memory
[   11.046582] [drm] Detected VRAM RAM=256M, BAR=256M
[   11.046587] [drm] RAM width 128bits DDR
[   11.046858] [drm] radeon: 64M of VRAM memory ready
[   11.046866] [drm] radeon: 256M of GTT memory ready.
[   11.046935] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   11.061306] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   11.061312] [drm] Driver supports precise vblank timestamp query.
[   11.061363] [drm] radeon: irq initialized.
[   11.061405] [drm] Loading R300 Microcode
[   11.110467] [drm] radeon: ring at 0x0000000000010000
[   11.257952] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
failed (scratch(0x15E4)=0xCAFEDEAD)
[   11.258060] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
working (-22).
[   11.404548] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
timeout, shutting down CP.
[   11.551199] [drm] radeon: cp finalized
[   12.547388] [drm] radeon: cp finalized
[   12.553854] [drm] radeon: ttm finalized
[   12.553861] [drm] Forcing AGP to PCI mode
[   12.643384] [drm] Not an x86 BIOS ROM, not using.
[   12.643406] [drm] Using device-tree clock info
[   12.643414] [drm] Generation 2 PCI interface, using max accessible memory
[   12.643446] [drm] Detected VRAM RAM=256M, BAR=256M
[   12.643452] [drm] RAM width 128bits DDR
[   12.643712] [drm] radeon: 64M of VRAM memory ready
[   12.643719] [drm] radeon: 512M of GTT memory ready.
[   12.643761] [drm] GART: num cpu pages 8192, num gpu pages 131072
[   12.645324] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
[   12.645343] [drm] PCI GART of 512M enabled (table at 0x0000000062F80000).
[   12.645462] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   12.645468] [drm] Driver supports precise vblank timestamp query.
[   12.645512] [drm] radeon: irq initialized.
[   12.645689] [drm] radeon: ring at 0x0000000090010000
[   12.793131] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
failed (scratch(0x15E4)=0xCAFEDEAD)
[   12.793235] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
working (-22).
[   12.939961] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
timeout, shutting down CP.
[   12.940193] [drm] radeon: cp finalized
[   12.944581] [drm] Connector Table: 12 (mac g5 9600)
[   12.944609] [drm] No valid Ext TMDS info found in BIOS
[   12.944621] [drm] No TV DAC info found in BIOS
[   12.944798] [drm] No TMDS info found in BIOS
[   12.944974] [drm] Radeon Display Connectors
[   12.944981] [drm] Connector 0:
[   12.944985] [drm]   DVI-I-1
[   12.944990] [drm]   HPD1
[   12.944995] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[   12.945000] [drm]   Encoders:
[   12.945005] [drm]     DFP2: INTERNAL_DVO1
[   12.945010] [drm]     CRT2: INTERNAL_DAC2
[   12.945015] [drm] Connector 1:
[   12.945019] [drm]   DVI-I-2
[   12.945023] [drm]   HPD2
[   12.945028] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[   12.945033] [drm]   Encoders:
[   12.945037] [drm]     DFP1: INTERNAL_TMDS1
[   12.945042] [drm]     CRT1: INTERNAL_DAC1
[   12.945046] [drm] Connector 2:
[   12.945051] [drm]   SVIDEO-1
[   12.945055] [drm]   Encoders:
[   12.945059] [drm]     TV1: INTERNAL_DAC2
[   13.028211] [drm] fb mappable at 0xB0040000
[   13.028229] [drm] vram apper at 0xB0000000
[   13.028234] [drm] size 8323072
[   13.028238] [drm] fb depth is 24
[   13.028243] [drm]    pitch is 7680
[   13.122329] radeon 0000:f0:10.0: fb0: radeondrmfb frame buffer device
[   13.175092] [drm] Initialized radeon 2.43.0 20080528 for 0000:f0:10.0 on
minor 0
rican-linux@Debian-G5:~$


On Mon, Sep 19, 2016 at 11:20 PM, Michel Dänzer <michel@daenzer.net> wrote:

> On 20/09/16 12:43 PM, Herminio Hernandez, Jr. wrote:
> >
> > Yes to both, however when I set radeon.agpmode=1 most of the time the
> > kernel freezes when booting. When I do get past that I get these errors:
>
> [...]
>
> > *[   11.415769] [drm:.radeon_agp_init [radeon]] *ERROR* Illegal AGP
> > Mode: 1 (valid 4, 8), leaving at 8*
>
> As you can see, AGP 1x isn't supported by your setup, only 4x or 8x. How
> about radeon.agpmode=4?
>
>
> --
> Earthling Michel Dänzer               |               http://www.amd.com
> Libre software enthusiast             |             Mesa and X developer
>

[-- Attachment #2: Type: text/html, Size: 6117 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-09-21  6:20                   ` Herminio Hernandez, Jr.
@ 2016-10-08 19:05                     ` Herminio Hernandez, Jr.
  2016-10-09  7:49                       ` Benjamin Herrenschmidt
  0 siblings, 1 reply; 33+ messages in thread
From: Herminio Hernandez, Jr. @ 2016-10-08 19:05 UTC (permalink / raw)
  To: Michel Dänzer
  Cc: Mathieu Malaterre, Mike, debian-powerpc, Aneesh Kumar K.V,
	Pranith Kumar, open list:LINUX FOR POWERPC...

[-- Attachment #1: Type: text/plain, Size: 5714 bytes --]

Performed an apt dist-upgrade and rebooted with agpmode=4 and still the GPU
is failing with errors. Should I proceed to place a bug report on this?

Herminio

On Tue, Sep 20, 2016 at 11:20 PM, Herminio Hernandez, Jr. <
herminio.hernandezjr@gmail.com> wrote:

> I am still getting errors even with radeon.agpmode=4 is set
>
> rican-linux@Debian-G5:~$ dmesg |grep -e radeom -e drm -e radeon.agpmode
> [    0.000000] Kernel command line: root=UUID=aeca9a67-31d7-4c4b-a0f8-4db328b33305
> radeon.agpmode=4
> [    9.734366] [drm] Initialized drm 1.1.0 20060810
> [   10.934519] [drm] radeon kernel modesetting enabled.
> [   10.943743] fb: switching to radeondrmfb from OFfb ATY,Simone
> [   10.954622] fb: switching to radeondrmfb from OFfb ATY,Simone
> [   10.956515] [drm] initializing kernel modesetting (RV350 0x1002:0x4150
> 0x1002:0x4150 0x00).
> [   10.956552] [drm] register mmio base: 0xA0000000
> [   10.956558] [drm] register mmio size: 65536
> [   11.046327] [drm] Not an x86 BIOS ROM, not using.
> [   11.046358] [drm] Using device-tree clock info
> [   11.046369] [drm] AGP mode requested: 4
> [   11.046528] [drm] Generation 2 PCI interface, using max accessible
> memory
> [   11.046582] [drm] Detected VRAM RAM=256M, BAR=256M
> [   11.046587] [drm] RAM width 128bits DDR
> [   11.046858] [drm] radeon: 64M of VRAM memory ready
> [   11.046866] [drm] radeon: 256M of GTT memory ready.
> [   11.046935] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
> [   11.061306] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
> [   11.061312] [drm] Driver supports precise vblank timestamp query.
> [   11.061363] [drm] radeon: irq initialized.
> [   11.061405] [drm] Loading R300 Microcode
> [   11.110467] [drm] radeon: ring at 0x0000000000010000
> [   11.257952] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
> failed (scratch(0x15E4)=0xCAFEDEAD)
> [   11.258060] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
> working (-22).
> [   11.404548] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
> timeout, shutting down CP.
> [   11.551199] [drm] radeon: cp finalized
> [   12.547388] [drm] radeon: cp finalized
> [   12.553854] [drm] radeon: ttm finalized
> [   12.553861] [drm] Forcing AGP to PCI mode
> [   12.643384] [drm] Not an x86 BIOS ROM, not using.
> [   12.643406] [drm] Using device-tree clock info
> [   12.643414] [drm] Generation 2 PCI interface, using max accessible
> memory
> [   12.643446] [drm] Detected VRAM RAM=256M, BAR=256M
> [   12.643452] [drm] RAM width 128bits DDR
> [   12.643712] [drm] radeon: 64M of VRAM memory ready
> [   12.643719] [drm] radeon: 512M of GTT memory ready.
> [   12.643761] [drm] GART: num cpu pages 8192, num gpu pages 131072
> [   12.645324] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
> [   12.645343] [drm] PCI GART of 512M enabled (table at
> 0x0000000062F80000).
> [   12.645462] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
> [   12.645468] [drm] Driver supports precise vblank timestamp query.
> [   12.645512] [drm] radeon: irq initialized.
> [   12.645689] [drm] radeon: ring at 0x0000000090010000
> [   12.793131] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring test
> failed (scratch(0x15E4)=0xCAFEDEAD)
> [   12.793235] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp isn't
> working (-22).
> [   12.939961] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP idle
> timeout, shutting down CP.
> [   12.940193] [drm] radeon: cp finalized
> [   12.944581] [drm] Connector Table: 12 (mac g5 9600)
> [   12.944609] [drm] No valid Ext TMDS info found in BIOS
> [   12.944621] [drm] No TV DAC info found in BIOS
> [   12.944798] [drm] No TMDS info found in BIOS
> [   12.944974] [drm] Radeon Display Connectors
> [   12.944981] [drm] Connector 0:
> [   12.944985] [drm]   DVI-I-1
> [   12.944990] [drm]   HPD1
> [   12.944995] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
> [   12.945000] [drm]   Encoders:
> [   12.945005] [drm]     DFP2: INTERNAL_DVO1
> [   12.945010] [drm]     CRT2: INTERNAL_DAC2
> [   12.945015] [drm] Connector 1:
> [   12.945019] [drm]   DVI-I-2
> [   12.945023] [drm]   HPD2
> [   12.945028] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
> [   12.945033] [drm]   Encoders:
> [   12.945037] [drm]     DFP1: INTERNAL_TMDS1
> [   12.945042] [drm]     CRT1: INTERNAL_DAC1
> [   12.945046] [drm] Connector 2:
> [   12.945051] [drm]   SVIDEO-1
> [   12.945055] [drm]   Encoders:
> [   12.945059] [drm]     TV1: INTERNAL_DAC2
> [   13.028211] [drm] fb mappable at 0xB0040000
> [   13.028229] [drm] vram apper at 0xB0000000
> [   13.028234] [drm] size 8323072
> [   13.028238] [drm] fb depth is 24
> [   13.028243] [drm]    pitch is 7680
> [   13.122329] radeon 0000:f0:10.0: fb0: radeondrmfb frame buffer device
> [   13.175092] [drm] Initialized radeon 2.43.0 20080528 for 0000:f0:10.0
> on minor 0
> rican-linux@Debian-G5:~$
>
>
> On Mon, Sep 19, 2016 at 11:20 PM, Michel Dänzer <michel@daenzer.net>
> wrote:
>
>> On 20/09/16 12:43 PM, Herminio Hernandez, Jr. wrote:
>> >
>> > Yes to both, however when I set radeon.agpmode=1 most of the time the
>> > kernel freezes when booting. When I do get past that I get these errors:
>>
>> [...]
>>
>> > *[   11.415769] [drm:.radeon_agp_init [radeon]] *ERROR* Illegal AGP
>> > Mode: 1 (valid 4, 8), leaving at 8*
>>
>> As you can see, AGP 1x isn't supported by your setup, only 4x or 8x. How
>> about radeon.agpmode=4?
>>
>>
>> --
>> Earthling Michel Dänzer               |               http://www.amd.com
>> Libre software enthusiast             |             Mesa and X developer
>>
>
>

[-- Attachment #2: Type: text/html, Size: 6787 bytes --]

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: PowerPC agpmode issues
  2016-10-08 19:05                     ` Herminio Hernandez, Jr.
@ 2016-10-09  7:49                       ` Benjamin Herrenschmidt
  0 siblings, 0 replies; 33+ messages in thread
From: Benjamin Herrenschmidt @ 2016-10-09  7:49 UTC (permalink / raw)
  To: Herminio Hernandez, Jr., Michel Dänzer
  Cc: Mathieu Malaterre, Mike, debian-powerpc, Aneesh Kumar K.V,
	Pranith Kumar, open list:LINUX FOR POWERPC...

On Sat, 2016-10-08 at 12:05 -0700, Herminio Hernandez, Jr. wrote:
> Performed an apt dist-upgrade and rebooted with agpmode=4 and still
> the GPU is failing with errors. Should I proceed to place a bug
> report on this?

I wouldn't even try to be honest. The HW issues in Apple AGP
implementation pretty much guarantee that things will crash
with the recent DRIs. Back when AGP memory was just a single
chunk of memory we got it to limp along but since DRI2 it's
pretty much hopeless.

I would stick to PCI GART even if it sucks for performances.

Cheers,
Ben.

> Herminio
> 
> On Tue, Sep 20, 2016 at 11:20 PM, Herminio Hernandez, Jr. <herminio.h
> ernandezjr@gmail.com> wrote:
> > I am still getting errors even with radeon.agpmode=4 is set
> > 
> > rican-linux@Debian-G5:~$ dmesg |grep -e radeom -e drm -e
> > radeon.agpmode
> > [    0.000000] Kernel command line: root=UUID=aeca9a67-31d7-4c4b-
> > a0f8-4db328b33305  radeon.agpmode=4
> > [    9.734366] [drm] Initialized drm 1.1.0 20060810
> > [   10.934519] [drm] radeon kernel modesetting enabled.
> > [   10.943743] fb: switching to radeondrmfb from OFfb ATY,Simone
> > [   10.954622] fb: switching to radeondrmfb from OFfb ATY,Simone
> > [   10.956515] [drm] initializing kernel modesetting (RV350
> > 0x1002:0x4150 0x1002:0x4150 0x00).
> > [   10.956552] [drm] register mmio base: 0xA0000000
> > [   10.956558] [drm] register mmio size: 65536
> > [   11.046327] [drm] Not an x86 BIOS ROM, not using.
> > [   11.046358] [drm] Using device-tree clock info
> > [   11.046369] [drm] AGP mode requested: 4
> > [   11.046528] [drm] Generation 2 PCI interface, using max
> > accessible memory
> > [   11.046582] [drm] Detected VRAM RAM=256M, BAR=256M
> > [   11.046587] [drm] RAM width 128bits DDR
> > [   11.046858] [drm] radeon: 64M of VRAM memory ready
> > [   11.046866] [drm] radeon: 256M of GTT memory ready.
> > [   11.046935] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
> > [   11.061306] [drm] Supports vblank timestamp caching Rev 2
> > (21.10.2013).
> > [   11.061312] [drm] Driver supports precise vblank timestamp
> > query.
> > [   11.061363] [drm] radeon: irq initialized.
> > [   11.061405] [drm] Loading R300 Microcode
> > [   11.110467] [drm] radeon: ring at 0x0000000000010000
> > [   11.257952] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring
> > test failed (scratch(0x15E4)=0xCAFEDEAD)
> > [   11.258060] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp
> > isn't working (-22).
> > [   11.404548] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP
> > idle timeout, shutting down CP.
> > [   11.551199] [drm] radeon: cp finalized
> > [   12.547388] [drm] radeon: cp finalized
> > [   12.553854] [drm] radeon: ttm finalized
> > [   12.553861] [drm] Forcing AGP to PCI mode
> > [   12.643384] [drm] Not an x86 BIOS ROM, not using.
> > [   12.643406] [drm] Using device-tree clock info
> > [   12.643414] [drm] Generation 2 PCI interface, using max
> > accessible memory
> > [   12.643446] [drm] Detected VRAM RAM=256M, BAR=256M
> > [   12.643452] [drm] RAM width 128bits DDR
> > [   12.643712] [drm] radeon: 64M of VRAM memory ready
> > [   12.643719] [drm] radeon: 512M of GTT memory ready.
> > [   12.643761] [drm] GART: num cpu pages 8192, num gpu pages 131072
> > [   12.645324] [drm] radeon: 1 quad pipes, 1 Z pipes initialized.
> > [   12.645343] [drm] PCI GART of 512M enabled (table at
> > 0x0000000062F80000).
> > [   12.645462] [drm] Supports vblank timestamp caching Rev 2
> > (21.10.2013).
> > [   12.645468] [drm] Driver supports precise vblank timestamp
> > query.
> > [   12.645512] [drm] radeon: irq initialized.
> > [   12.645689] [drm] radeon: ring at 0x0000000090010000
> > [   12.793131] [drm:.r100_ring_test [radeon]] *ERROR* radeon: ring
> > test failed (scratch(0x15E4)=0xCAFEDEAD)
> > [   12.793235] [drm:.r100_cp_init [radeon]] *ERROR* radeon: cp
> > isn't working (-22).
> > [   12.939961] [drm:.r100_cp_fini [radeon]] *ERROR* Wait for CP
> > idle timeout, shutting down CP.
> > [   12.940193] [drm] radeon: cp finalized
> > [   12.944581] [drm] Connector Table: 12 (mac g5 9600)
> > [   12.944609] [drm] No valid Ext TMDS info found in BIOS
> > [   12.944621] [drm] No TV DAC info found in BIOS
> > [   12.944798] [drm] No TMDS info found in BIOS
> > [   12.944974] [drm] Radeon Display Connectors
> > [   12.944981] [drm] Connector 0:
> > [   12.944985] [drm]   DVI-I-1
> > [   12.944990] [drm]   HPD1
> > [   12.944995] [drm]   DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
> > [   12.945000] [drm]   Encoders:
> > [   12.945005] [drm]     DFP2: INTERNAL_DVO1
> > [   12.945010] [drm]     CRT2: INTERNAL_DAC2
> > [   12.945015] [drm] Connector 1:
> > [   12.945019] [drm]   DVI-I-2
> > [   12.945023] [drm]   HPD2
> > [   12.945028] [drm]   DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
> > [   12.945033] [drm]   Encoders:
> > [   12.945037] [drm]     DFP1: INTERNAL_TMDS1
> > [   12.945042] [drm]     CRT1: INTERNAL_DAC1
> > [   12.945046] [drm] Connector 2:
> > [   12.945051] [drm]   SVIDEO-1
> > [   12.945055] [drm]   Encoders:
> > [   12.945059] [drm]     TV1: INTERNAL_DAC2
> > [   13.028211] [drm] fb mappable at 0xB0040000
> > [   13.028229] [drm] vram apper at 0xB0000000
> > [   13.028234] [drm] size 8323072
> > [   13.028238] [drm] fb depth is 24
> > [   13.028243] [drm]    pitch is 7680
> > [   13.122329] radeon 0000:f0:10.0: fb0: radeondrmfb frame buffer
> > device
> > [   13.175092] [drm] Initialized radeon 2.43.0 20080528 for
> > 0000:f0:10.0 on minor 0
> > rican-linux@Debian-G5:~$ 
> > 
> > 
> > On Mon, Sep 19, 2016 at 11:20 PM, Michel Dänzer <michel@daenzer.net
> > > wrote:
> > > On 20/09/16 12:43 PM, Herminio Hernandez, Jr. wrote:
> > > >
> > > > Yes to both, however when I set radeon.agpmode=1 most of the
> > > time the
> > > > kernel freezes when booting. When I do get past that I get
> > > these errors:
> > > 
> > > [...]
> > > 
> > > > *[   11.415769] [drm:.radeon_agp_init [radeon]] *ERROR* Illegal
> > > AGP
> > > > Mode: 1 (valid 4, 8), leaving at 8*
> > > 
> > > As you can see, AGP 1x isn't supported by your setup, only 4x or
> > > 8x. How
> > > about radeon.agpmode=4?
> > > 
> > > 
> > > --
> > > Earthling Michel Dänzer               |               http://www.
> > > amd.com
> > > Libre software enthusiast             |             Mesa and X
> > > developer
> > > 
> > 
> > 
> 

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2016-10-09  7:50 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-05  2:47 PowerPC agpmode issues Mike
2016-02-05  7:49 ` Denis Kirjanov
2016-02-05 14:42   ` Mike
2016-02-05 14:32 ` Herminio Hernandez Jr. 
2016-02-05 14:44   ` Mike
2016-02-05 17:51     ` Herminio Hernandez, Jr.
2016-02-05 18:06       ` Mike
2016-02-05 18:08         ` Herminio Hernandez, Jr.
2016-02-05 19:44           ` Mike
2016-02-05 19:46             ` Herminio Hernandez, Jr.
2016-02-05 19:59               ` Mike
2016-02-05 20:10                 ` Herminio Hernandez, Jr.
2016-08-25  3:09   ` Mike
2016-08-25  5:34     ` Mathieu Malaterre
2016-08-25 10:54     ` Benjamin Herrenschmidt
     [not found]       ` <57DF23C4.20508@gmail.com>
2016-09-19  9:13         ` Herminio Hernandez, Jr.
2016-09-19 10:38           ` Benjamin Herrenschmidt
2016-09-19 19:30             ` Herminio Hernandez, Jr.
2016-09-19 12:36           ` Mathieu Malaterre
2016-09-20  3:05             ` Michel Dänzer
2016-09-20  3:43               ` Herminio Hernandez, Jr.
2016-09-20  6:20                 ` Michel Dänzer
2016-09-21  6:20                   ` Herminio Hernandez, Jr.
2016-10-08 19:05                     ` Herminio Hernandez, Jr.
2016-10-09  7:49                       ` Benjamin Herrenschmidt
2016-02-08  9:53 ` Michel Dänzer
2016-02-08 12:09   ` Mike
2016-02-08 12:41   ` Boris Reinhard
2016-02-08 13:28     ` Mike
2016-02-09  1:41       ` Michel Dänzer
2016-02-09  2:27         ` Mike
2016-02-09 11:52           ` Gerhard Pircher
2016-02-09 12:15             ` luigi burdo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.