From 69ae98b46ec77c81215a3c334fd0f85df4888a4c Mon Sep 17 00:00:00 2001 From: nbd Date: Wed, 31 May 2006 16:01:46 +0000 Subject: move target/linux/package/switch to package/, fix a bug in the ipkg dependency handling git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3864 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/switch/src/gpio.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 package/switch/src/gpio.h (limited to 'package/switch/src/gpio.h') diff --git a/package/switch/src/gpio.h b/package/switch/src/gpio.h new file mode 100644 index 0000000000..8257600331 --- /dev/null +++ b/package/switch/src/gpio.h @@ -0,0 +1,45 @@ +#ifndef __GPIO_H +#define __GPIO_H + +#if defined(BCMGPIO2) + +#ifdef LINUX_2_4 +#define sbh bcm947xx_sbh +extern void *bcm947xx_sbh; +#else +extern void *sbh; +#endif + +extern __u32 sb_gpioin(void *sbh); +extern __u32 sb_gpiointpolarity(void *sbh, __u32 mask, __u32 val, __u8 prio); +extern __u32 sb_gpiointmask(void *sbh, __u32 mask, __u32 val, __u8 prio); +extern __u32 sb_gpioouten(void *sbh, __u32 mask, __u32 val, __u8 prio); +extern __u32 sb_gpioout(void *sbh, __u32 mask, __u32 val, __u8 prio); + +#define gpioin() sb_gpioin(sbh) +#define gpiointpolarity(mask,val) sb_gpiointpolarity(sbh, mask, val, 0) +#define gpiointmask(mask,val) sb_gpiointmask(sbh, mask, val, 0) +#define gpioouten(mask,val) sb_gpioouten(sbh, mask, val, 0) +#define gpioout(mask,val) sb_gpioout(sbh, mask, val, 0) + +#elif defined(BCMGPIO) + +#define sbh bcm947xx_sbh +extern void *bcm947xx_sbh; +extern __u32 sb_gpioin(void *sbh); +extern __u32 sb_gpiointpolarity(void *sbh, __u32 mask, __u32 val); +extern __u32 sb_gpiointmask(void *sbh, __u32 mask, __u32 val); +extern __u32 sb_gpioouten(void *sbh, __u32 mask, __u32 val); +extern __u32 sb_gpioout(void *sbh, __u32 mask, __u32 val); + +#define gpioin() sb_gpioin(sbh) +#define gpiointpolarity(mask,val) sb_gpiointpolarity(sbh, mask, val) +#define gpiointmask(mask,val) sb_gpiointmask(sbh, mask, val) +#define gpioouten(mask,val) sb_gpioouten(sbh, mask, val) +#define gpioout(mask,val) sb_gpioout(sbh, mask, val) + +#else +#error Unsupported/unknown GPIO configuration +#endif + +#endif /* __GPIO_H */ -- cgit v1.2.3 From 87ed3074d4cab97caabefbcf3702cb75c66b5d2f Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 27 Jun 2006 00:40:19 +0000 Subject: add missing copyright git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4093 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/switch/src/gpio.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'package/switch/src/gpio.h') diff --git a/package/switch/src/gpio.h b/package/switch/src/gpio.h index 8257600331..800ae25a9f 100644 --- a/package/switch/src/gpio.h +++ b/package/switch/src/gpio.h @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2006 OpenWrt.org + * + * This is free software, licensed under the GNU General Public License v2. + * See /LICENSE for more information. + */ + #ifndef __GPIO_H #define __GPIO_H -- cgit v1.2.3