|
@@ -20,10 +20,18 @@
|
|
|
* devices that need GPIO.
|
|
|
*/
|
|
|
|
|
|
+#ifdef CONFIG_CPU_S3C244X
|
|
|
+#define ARCH_NR_GPIOS (32 * 9 + CONFIG_S3C24XX_GPIO_EXTRA)
|
|
|
+#else
|
|
|
#define ARCH_NR_GPIOS (256 + CONFIG_S3C24XX_GPIO_EXTRA)
|
|
|
+#endif
|
|
|
|
|
|
#include <asm-generic/gpio.h>
|
|
|
#include <mach/gpio-nrs.h>
|
|
|
#include <mach/gpio-fns.h>
|
|
|
|
|
|
+#ifdef CONFIG_CPU_S3C24XX
|
|
|
+#define S3C_GPIO_END (S3C2410_GPIO_BANKJ + 32)
|
|
|
+#else
|
|
|
#define S3C_GPIO_END (S3C2410_GPIO_BANKH + 32)
|
|
|
+#endif
|