23 Sep, 2006

3 commits


08 Aug, 2006

1 commit


03 Aug, 2006

3 commits

  • Sometimes we simply want to turn off or on everything, and when recently a
    warning was added when a certain platform function can't be called, this
    triggered all the time in those cases. This patch shows the warning only if
    the error was different from the function not existing.
    The alternative would be to not even try calling the function when it
    doesn't exist by first checking which exist and then only calling those that
    do, but that adds complexity that isn't necessary.

    Signed-off-by: Johannes Berg
    Signed-off-by: Takashi Iwai
    Signed-off-by: Jaroslav Kysela

    Johannes Berg
     
  • This patch fixes the toonie codec to be actually usable.

    Signed-off-by: Johannes Berg
    Signed-off-by: Takashi Iwai
    Signed-off-by: Jaroslav Kysela

    Johannes Berg
     
  • The IRQ rework caused some hiccups here, in some cases we call
    get_irq without a device node. This patch makes it catch that
    case and return NO_IRQ when it happens, along with changing the
    place where the irq is checked to check for NO_IRQ instead of -1.
    Acked-by: Benjamin Herrenschmidt

    Signed-off-by: Johannes Berg
    Signed-off-by: Takashi Iwai
    Signed-off-by: Jaroslav Kysela

    Johannes Berg
     

01 Aug, 2006

1 commit


31 Jul, 2006

1 commit


11 Jul, 2006

12 commits


03 Jul, 2006

1 commit

  • This adds the new irq remapper core and removes the old one. Because
    there are some fundamental conflicts with the old code, like the value
    of NO_IRQ which I'm now setting to 0 (as per discussions with Linus),
    etc..., this commit also changes the relevant platform and driver code
    over to use the new remapper (so as not to cause difficulties later
    in bisecting).

    This patch removes the old pre-parsing of the open firmware interrupt
    tree along with all the bogus assumptions it made to try to renumber
    interrupts according to the platform. This is all to be handled by the
    new code now.

    For the pSeries XICS interrupt controller, a single remapper host is
    created for the whole machine regardless of how many interrupt
    presentation and source controllers are found, and it's set to match
    any device node that isn't a 8259. That works fine on pSeries and
    avoids having to deal with some of the complexities of split source
    controllers vs. presentation controllers in the pSeries device trees.

    The powerpc i8259 PIC driver now always requests the legacy interrupt
    range. It also has the feature of being able to match any device node
    (including NULL) if passed no device node as an input. That will help
    porting over platforms with broken device-trees like Pegasos who don't
    have a proper interrupt tree.

    Signed-off-by: Benjamin Herrenschmidt
    Signed-off-by: Paul Mackerras

    Benjamin Herrenschmidt
     

29 Jun, 2006

4 commits


23 Jun, 2006

2 commits

  • Signed-off-by: Jaroslav Kysela

    Jaroslav Kysela
     
  • This large patch adds all of snd-aoa.
    Consisting of many modules, it currently replaces snd-powermac
    for all layout-id based machines and handles many more (for
    example new powerbooks and powermacs with digital output that
    previously couldn't be used at all).
    It also has support for all layout-IDs that Apple has (judging
    from their Info.plist file) but not all are tested.
    The driver currently has 2 known regressions over snd-powermac:
    * it doesn't handle powermac 7,2 and 7,3
    * it doesn't have a DRC control on snapper-based machines
    I will fix those during the 2.6.18 development cycle.

    Signed-off-by: Johannes Berg
    Signed-off-by: Takashi Iwai

    Johannes Berg