Advertisement
Guest User

Untitled

a guest
Sep 13th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.98 KB | None | 0 0
  1. diff --git a/rpi.c b/rpi.c
  2. index f8de633..2638a54 100644
  3. --- a/rpi.c
  4. +++ b/rpi.c
  5. @@ -95,6 +95,12 @@ static volatile uint32_t  *clkReg  = MAP_FAILED;
  6.  #define PI_BANK (gpio>>5)
  7.  #define PI_BIT  (1<<(gpio&0x1F))
  8.  
  9. +/* BCM2711 (RPi 4) pullups are different. */
  10. +#define GPPUPPDN0 57 /* pins 15:0  */
  11. +#define GPPUPPDN1 58 /* pins 31:16 */
  12. +#define GPPUPPDN2 59 /* pins 47:32 */
  13. +#define GPPUPPDN3 60 /* pins 57:48 */
  14. +
  15.  /* gpio modes. */
  16.  
  17.  #define PI_INPUT  0
  18. @@ -131,6 +137,7 @@ int gpioGetMode(unsigned gpio) {
  19.  #define PI_PUD_UP   2
  20.  
  21.  void gpioSetPullUpDown(unsigned gpio, unsigned pud) {
  22. +  if (piModel != 4) {
  23.     *(gpioReg + GPPUD) = pud;
  24.  
  25.     usleep(20);
  26. @@ -142,6 +149,28 @@ void gpioSetPullUpDown(unsigned gpio, unsigned pud) {
  27.     *(gpioReg + GPPUD) = 0;
  28.  
  29.     *(gpioReg + GPPUDCLK0 + PI_BANK) = 0;
  30. +  } else {
  31. +
  32. +    int pullreg = GPPUPPDN0 + (gpio>>4); /* Which pull-up control reg to use */
  33. +    int pullshift = (gpio & 0xf) << 1;   /* Bit position within reg */
  34. +    unsigned int pullbits;
  35. +    unsigned int pull;
  36. +
  37. +    switch (pud)
  38. +      {
  39. +      case PI_PUD_OFF: pull = 0; break;
  40. +      case PI_PUD_UP: pull = 1; break;
  41. +      case PI_PUD_DOWN: pull = 2; break;
  42. +      default:
  43. +       return;
  44. +      }
  45. +
  46. +    pullbits = *(gpioReg + pullreg);
  47. +    pullbits &= ~(3 << pullshift);
  48. +    pullbits |= (pull << pullshift);
  49. +    *(gpioReg + pullreg) = pullbits;
  50. +
  51. +  }
  52.  }
  53.  
  54.  int gpioRead(unsigned gpio) {
  55. @@ -201,7 +230,13 @@ unsigned gpioHardwareRevision(void) {
  56.           {
  57.              if (!strncasecmp("model name", buf, 10))
  58.              {
  59. -               if (strstr (buf, "ARMv6") != NULL)
  60. +             if (strstr (buf, "v7l") != NULL) {
  61. +                  piModel = 4;
  62. +                  chars = 4;
  63. +                  piPeriphBase = 0xFE000000;
  64. +                  piBusAddr = 0x40000000;
  65. +               }
  66. +               else if (strstr (buf, "ARMv6") != NULL)
  67.                 {
  68.                    piModel = 1;
  69.                    chars = 4;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement