05 Oct, 2007

1 commit


13 Sep, 2007

2 commits


07 Feb, 2007

1 commit

  • This contains important fixes for the CPM2 PIC code. Eliminated
    CPM_IRQ_OFFSET, pulling the respective interrupt numbers from the interrupt
    mapping. Updated devicetree files to reflect that. Changed direct
    IC-related IO accesses to the IO accessors. Fixed all the sense values to
    keep coherency with ipic. In the current code, CPM2 stuff will have no IRQs
    and hence could be hardly usable.

    Signed-off-by: Vitaly Bordug
    Signed-off-by: Paul Mackerras

    Vitaly Bordug
     

24 Jan, 2007

1 commit


07 Oct, 2006

1 commit

  • Remove struct pt_regs * from all handlers.
    Also remove the regs argument from get_irq() functions.
    Compile tested with arch/powerpc/config/* and
    arch/ppc/configs/prep_defconfig

    Signed-off-by: Olaf Hering
    Signed-off-by: Paul Mackerras

    Olaf Hering
     

04 Oct, 2006

1 commit


22 Sep, 2006

2 commits

  • The stuff below cleans up the code attempting to remap the whole cpm2_immr
    early, as well as places happily assuming that fact. This is more like the 2.4
    legacy stuff, and is at least confusing and unclear now.

    To keep the world comfortable, a new mechanism is introduced: before accessing
    specific immr register/register set, one needs to map it, using cpm2_map(),
    for instance, access to CPM command register will look like
    volatile cpm_cpm2_t *cp = cpm2_map(im_cpm);
    keeping the code clear, yet without "already defined somewhere" cpm2_immr.

    So far, unmapping code is not implemented, but it's not a big deal to add it,
    if the whole idea makes sense.

    Signed-off-by: Vitaly Bordug

    Vitaly Bordug
     
  • This moves the cpm2 common code and PIC stuff to the powerpc. Most of the files
    were just copied from ppc/, with minor tuning to make it compile, and, subsequently, work.

    Signed-off-by: Vitaly Bordug

    Vitaly Bordug