The programming interface register is definitely writable, but the VIA IDE docs
state that certain bits will always read 0 - setting '0x5' in my original patch
set those two bits so it was forced into native mode if it wasn't already.

Setting them to ~0x5 will set them to 0 (legacy mode) and they will always read
back as 0 (legacy mode.. sigh) even if in native mode.

Fixing the class code in the device tree doesn't mean anything as lspci, sysfs
etc. read right from config space and NOTHING in linux powerpc uses the device
tree for information (RTAS is about as close as it gets).

I'm still working on my little "device tree fixups" Forth script for Pegasos
which is very difficult without a Pegasos to test it on. I need the correct
device locations and target values to do it, and I want to add a fix so that
it ONLY runs on 20040810 firmwares (and the minor updates for 2B5 boards) and
complains on anything else (any developers who got a beta firmware..) as it
seems the fixes you're making here do not apply.

I attached it if anyone wants to toy with it.. I can't guarantee that it
even parses as I've just been poking at it, but the basic theory is in there.
It should remove any kernel/prom_init device tree fixups but requires still the
pci fixups in chrp/pci.

There's an Efika one too..

Any comments would be awesome.

--
Matt Sealey <[EMAIL PROTECTED]>
Genesi, Manager, Developer Relations

Olaf Hering wrote:
On Fri, Aug 17, Olaf Hering wrote:

Still not 100% perfect.

+               prom_printf("Fixing up IDE class-code on Pegasos...\n");
+               rc = prom_getprop(ph, "class-code", prop, sizeof(u32));
+               if (rc == sizeof(u32)) {
+                       prop[0] &= ~0x5;
+                       prom_setprop(ph, name, "class-code", prop, sizeof(u32));
+               }

This updates the class code in the device-tree, but sysfs still shows
the old value.

+       pci_read_config_byte(viaide, PCI_CLASS_PROG, &progif);
+       pci_write_config_byte(viaide, PCI_CLASS_PROG, progif & ~0x5);

Is this a readonly register by any chance?
Appending a 'viaide->class &= ~0x5;' changes the code paths in
do_ide_setup_pci_device(), now IDE prints 'not 100%% native mode,
will probe irqs later'. Where are the irqs supposed to come from?

-#ifdef CONFIG_PPC_CHRP
-       if(machine_is(chrp) && _chrp_type == _CHRP_Pegasos) {
-               hwif->irq = hwif->channel ? 15 : 14;
-       }
-#endif

Maybe we should just leave this in and dont bother about the arch
specific tweak?
_______________________________________________
Linuxppc-dev mailing list
[EMAIL PROTECTED]
https://ozlabs.org/mailman/listinfo/linuxppc-dev
\ FORTH

\ Pegasos fixes for device tree and peripheral configuration
\
\ - Fixes up entries to "comply" with Linux specifications
\ - Changes IDE class-code to help libata decide what to do
\
\ Changelog:
\
\ 0.1: ISA ranges & IDE interrupts fixes from Linux
\      Requires prom_init.c patch to fix the PCI config space
\      as the 
\ 0.2: keyboard controller fix

." PegasosPPC Device Tree Supplement 20070817" cr
." (c) 2007 Matt Sealey, Genesi USA, Inc." cr cr

headerless

." Linux device tree fixups" cr

\ Fix ATA
." * Fixing IDE controller class-code and interrupts .." cr
." * Fixing IDE interrupts .." cr
s" /[EMAIL PROTECTED]/[EMAIL PROTECTED],1" find-device 
        d# 14 encode-int 0 encode-int
\       d# 15 encode-int 0 encode-int
        encode+ encode+ encode+ s" interrupts" property
        
\       0x101?? encode-int s" class-code" property
device-end

." * Fixing ISA ranges .. " cr
s" /[EMAIL PROTECTED]/[EMAIL PROTECTED]" find-device
        0x1 encode-int 0x0 encode-int 0x1006000 encode-int 
        0x0 encode-int 0x0 encode-int 0x1000 encode-int
        encode+ encode+ encode+ encode+ encode+ s" ranges" property
device-end

." * Fixing Keyboard controller type .." cr
s" /[EMAIL PROTECTED]/[EMAIL PROTECTED]/8042" find-device
        s" 8042" encode-string device-type
device-end

." Done" cr cr

\ Edit for your pleasure, and uncomment to boot your Linux
\ s" hd:0 vmlinuz video= root= console=" $boot
\ FORTH

\ Efika fixes for device tree and port configuration, 
\ ostensibly for Linux but actually useful for a great
\ deal of other things.
\
\ Firmwares:    20061107 (1.3) - Initial Production
\               20070122 (1.3) - Second Production
\               ???????? (2.0) - Any Day Now..
\
\ - Fixes up entries to "comply" with Linux specifications
\ - Enables AC97 on PSC2 if it's not already enabled
\ - Adds GPIO, CDM, GPT, SLT, XLB and SDRAM entries
\
\ Changelog:
\
\ 0.1: Makes all device tree changes dictated by
\      arch/powerpc/kernel/prom_init.c:fixup_device_tree_efika() 
\ 0.2: Adds slice timer, GPT nodes, CDM and GPIO
\ 0.3: Fixed GPT adder to use the stack properly instead of variables
\ 0.4: XLB and SDRAM nodes
\ 0.9: fixed BestComm fixer to use 'i' instead of a counter variable
\

." EFIKA MPC5200B Device Tree Supplement 20070810" cr

\ headerless

\ Device tree fixups for the purpose of pleasing Sylvain
." Linux device tree fixups" cr

\ Fix ATA, BestComm, PIC, serial, sound and sram just like the Linux guys want
s" /builtin/ata" find-device 
        s" mpc5200-ata" encode-string
        s" mpc5200b-ata" encode-string
        encode+
        s" compatible" property
device-end


\ Audio. Also enable AC97 if not done already.
s" /builtin/sound" find-device
        s" mpc5200-psc-ac97" encode-string
        s" mpc5200b-psc-ac97" encode-string
        encode+
        s" compatible" property

        0x2 encode-int
        0x2 encode-int
        0x3 encode-int
        encode+ encode+
        s" interrupts" property

        \ Audio is on PSC2, just for informational purposes
        1 encode-int s" cell-index" property
device-end

\ Quick test to see if AC97 is enabled

0xf0000b00 dup dup l@ 0x20 and
0= if
        ." Enabling AC97" cr
        dup l@ 0x20 or
        swap l!
else
        drop
then

\ SRAM compatibles
s" /builtin/sram" find-device
        s" mpc5200-sram" encode-string
        s" mpc5200b-sram" encode-string
        encode+
        s" compatible" property
        
        s" sram" device-type \ this is a contentious one
device-end

\ PIC compatibles
s" /builtin/pic" find-device
        s" mpc5200-pic" encode-string
        s" mpc5200b-pic" encode-string
        encode+
        s" compatible" property
device-end


\ Serial compatibles. Also fix cell-index and port-number as per bindings
s" /builtin/serial" find-device
        s" mpc5200-psc-uart" encode-string
        s" mpc5200b-psc-uart" encode-string
        encode+
        s" compatible" property
        
        \ Serial port is PSC1 for informational purposes, Linux 0-indexes it
        0 encode-int s" cell-index" property
        \ Since this is the main, always there, preferred serial port..
        0 encode-int s" port-number" property
device-end


\ Ethernet compatibles
s" /builtin/ethernet" find-device
        s" mpc5200-fec" encode-string
        s" mpc5200b-fec" encode-string
        encode+
        s" compatible" property
device-end


\ BestComm compatibles, interrupt mess
s" /builtin/bestcomm" find-device
        s" mpc5200-bestcomm" encode-string
        s" mpc5200b-bestcomm" encode-string
        encode+
        s" compatible" property
                
        \ make 16 interrupt property in a batch. Note, stack usage is through
        \ the roof, but we have just enough to do this 16 times.
        0x10 0 do 
                0x3 encode-int i encode-int 0x3 encode-int
        loop
        
        \ for each interrupt we need to concatenate them with encode+ for
        \ each value. And then two more.
        0xf 0x3 do encode+ encode+ encode+ loop 
        encode+ encode+
        
        \ now we can store the damn thing
        s" interrupts" property
device-end

\ Go into the root node and kill off any mention of CHRP
\ we're not compatible enough, it seems..

s" /" find-device
        s" efika" device-type
        s" EFIKA5K2 PowerPC System" encode-string s" CODEGEN,description" 
property
device-end

\ Find the Builtin device
\ Fix the device-type for Linux

s" /builtin" find-device
        s" soc" device-type
\ device-end \ don't end here? New devices need to be made inside...



\
\
\ ADDING NEW ENTRIES TO THE DEVICE TREE
\
\

\
\ Clock Distribution Module - need this to change baud rates etc. and turn off
\ clocks for power management. Useful little thing. Needs an entry to find the
\ address without guessing (in case they change it in the 512X)

\ Clock Distribution Module
." Adding Clock Distribution Module" cr

new-device

        " cdm" 2dup device-name device-type
        " MPC52xx Clock Distribution Module" encode-string " .description" 
property
        0xf0000200 0x38 reg

        " mpc5200-cdm" encode-string 
        " mpc5200b-cdm" encode-string
        encode+
        " compatible" property

finish-device

\
\ General Purpose I/O
\
\ Does not include GPIO for GPTs (since they're not connected on Efika) or
\ the dedicated GPIO group (because they're connected to the SDRAM on Efika)

\ GPIO (Simple) Module
." Adding Simple GPIO Module" cr

new-device
        s" gpio" 2dup device-name device-type
        s" MPC52xx Simple GPIO" encode-string s" .description" property
        0xf0000b00 0x10 reg

        s" mpc5200-gpio" encode-string
        s" mpc5200b-gpio" encode-string encode+ 
        s" compatible" property

        0x10000000 encode-int s" gpio-mask" property

        0x1 encode-int
        0x7 encode-int
        0x3 encode-int
        encode+ encode+
        s" interrupts" property
finish-device

\ GPIO (Wakeup) Module
." Adding Wakeup GPIO Module" cr

new-device
        s" gpio-wkup" 2dup device-name device-type
        s" MPC52xx Wakeup GPIO" encode-string s" .description" property
        0xf0000c00 0x10 reg

        s" mpc5200-gpio-wkup" encode-string
        s" mpc5200b-gpio-wkup" encode-string
        encode+
        s" compatible" property
        
        0x30000000 encode-int s" gpio-mask" property

        0x1 encode-int
        0x8 encode-int
        0x3 encode-int
        0x1 encode-int
        0x3 encode-int
        0x3 encode-int
        encode+ encode+ encode+ encode+ encode+
        s" interrupts" property
finish-device

\
\ High resolution (General Purpose and Slice) Timers
\
\ Useful since May 2007 we got high resolution timers and dynticks
\ support in PowerPC semi-officially. High resolution timers are
\ the new black.
\


\ Slice Timer (SLT1)
\ We ignore slice timer 0 since it has too high an interrupt priority?
." Adding Slice Timer 1" cr

new-device
        s" slt" 2dup device-name device-type
        s" MPC52xx Slice Timer" encode-string " .description" property
        0xf0000710 0x10 reg
        
        s" mpc5200-slt" encode-string 
        s" mpc5200b-slt" encode-string
        encode+
        s" compatible" property

        1 encode-int " cell-index" property

        \ THIS IS WRONG WRONG WRONG??????
        0x1 encode-int
        0x0 encode-int
        0x3 encode-int
        encode+ encode+
        s" interrupts" property
finish-device

: gpt-add ( gpt-id -- )
depth                  
1 > if                 
        dup 7 <= if    
                dup    
                0x9 +  
                swap dup
                0x10 *  
                0xf0000600 +
                swap dup    

                ." Adding General Purpose Timer " .d cr 

\               s" /builtin" find-device
                new-device
                
                s" gpt" 2dup device-name device-type   
                swap 0x10 reg                      

                encode-int " cell-index" property   
                
                s" MPC52xx General Purpose Timer" encode-string s" 
.description" property
                
                s" mpc5200-gpt" encode-string
                s" mpc5200b-gpt" encode-string encode+
                s" compatible" property
                
                0x1 encode-int                        
                2 pick encode-int                       
                0x3 encode-int
                encode+ encode+
                s" interrupts" property
                
                finish-device
        then
then
;

\ we'll just add 4 of them for now... plenty of timers to go around
4 gpt-add
5 gpt-add
6 gpt-add
7 gpt-add



\
\ HERE BE DRAGONS
\
\ These are parts of the system that are a little bit contentious to
\ install in the device-tree, however certain tiny flags are useful
\ in other components and drivers. Being able to search for these
\ nodes is useful in those drivers.
\
\ This is pure device advertising: Genesi do not endorse using these to do
\ screwy things like changing the way the SDRAM controller operates!!

\ SDRAM Controller (needed to enter deep sleep and turn off RAM clocks)
." Adding SDRAM Controller" cr

new-device
        s" sdram" device-name
        s" memory-controller" device-type
        s" MPC52xx SDRAM Memory Controller" encode-string " .description" 
property      
        0xf0000100 0x10 reg
        
        s" mpc5200b-sdram" encode-string
        s" mpc5200-sdram" encode-string
        encode+
        s" compatible" property
finish-device   

\ XLB Arbiter (pipeline/bestcomm stuff enabled here)
." Adding XLB Arbiter" cr

new-device
        s" xlb" 2dup device-name device-type
        0xf0001f00 0x100 reg
        s" MPC52xx XLB Arbiter" encode-string " .description" property  
        s" mpc5200-xlb" encode-string
        s" mpc5200b-xlb" encode-string
        encode+
        s" compatible" property
finish-device




\ Uncomment and boot your Linux
\ s" hd:0 vmlinuz console= blah=" $boot

Reply via email to