Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rpi 3.2.21 gpio interrupt #1

Merged
merged 4 commits into from
Jul 1, 2012
Merged

Rpi 3.2.21 gpio interrupt #1

merged 4 commits into from
Jul 1, 2012

Commits on Jun 27, 2012

  1. bcm_2708: don't use ARCH_NR_GPIOS

    bcm2708_gpio.c claims all gpios up to ARCH_NR_GPIOS this is a bug as the SoC
    only has 54 gpio pins and claiming all gpios prevents other drivers registering
    any additional gpios.
    
    Move the driver over to using BCM_NR_GPIOS instead
    selsinork committed Jun 27, 2012
    Configuration menu
    Copy the full SHA
    6c1c4fa View commit details
    Browse the repository at this point in the history
  2. bcm_2708: remove ARCH_NR_GPIOS

    ARCH_NR_GPIOS is a subsystem bug. Remove it.
    selsinork committed Jun 27, 2012
    Configuration menu
    Copy the full SHA
    f57e282 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    229f8dc View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2012

  1. bcm2708: allow gpio interrupts to actually work

    gpio_to_irq is provided as a generic function by gpiolib now, so we must
    override it with our own version to prevent an infinite recursive loop
    selsinork committed Jul 1, 2012
    10 Configuration menu
    Copy the full SHA
    e6c795e View commit details
    Browse the repository at this point in the history