X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=target_firmware%2Fmagpie_fw_dev%2Ftarget%2Fadf%2Fadf_os_io_pvt.h;h=105216ffe25b3952c4a797465d77eabf3ce69c55;hb=3ab79b4a8e895983a5701b08e767c1e9ff9f622a;hp=bf8881183c12dee9d6d408a95b0ebdd58bf3cfe5;hpb=3e5dd3888ba1025aee295f8fc26ceb8d4eef8a9a;p=open-ath9k-htc-firmware.git diff --git a/target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h b/target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h index bf88811..105216f 100755 --- a/target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h +++ b/target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h @@ -47,37 +47,6 @@ (((x) & 0x0000ff00) << 8) | \ (((x) & 0x000000ff) << 24)) -#if 0 -static __inline __uint64_t -__bswap64(__uint64_t _x) -{ - - return ((_x >> 56) | ((_x >> 40) & 0xff00) | ((_x >> 24) & 0xff0000) | - ((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) | - ((_x << 24) & ((__uint64_t)0xff << 40)) | - ((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56))); -} -#endif - -#define __adf_os_reg_read8(_dev, _addr) oops no implementation... - -#define __adf_os_reg_read16(_dev, _addr) oops no implementation... - -#define __adf_os_reg_read32(_dev, _addr) *((a_uint32_t *)(WLAN_BASE_ADDRESS + _addr)) - -#define __adf_os_reg_read64(_dev, _addr) oops no implementation... - -#define __adf_os_reg_write8(_dev, _addr, _val) oops no implementation... - -#define __adf_os_reg_write16(_dev, _addr, _val) oops no implementation... - -// RAY: The delay is required. But needs to know why?? -//#define __adf_os_reg_write32(_dev, _addr, _val) *((a_uint32_t *)(0x10ff0000 + _addr)) = _val; A_DELAY_USECS(100); -//RAY 0806: Move the delay (100us) to the host side because of throughput issue -#define __adf_os_reg_write32(_dev, _addr, _val) *((a_uint32_t *)(WLAN_BASE_ADDRESS + _addr)) = _val; - -#define __adf_os_reg_write64(_dev, _addr, _val) oops no implementation... - #define __adf_os_ntohs(x) x #define __adf_os_ntohl(x) x @@ -85,19 +54,5 @@ __bswap64(__uint64_t _x) #define __adf_os_htonl(x) x #define __adf_os_cpu_to_le16(x) __bswap16(x) -#define __adf_os_cpu_to_le32(x) __bswap32(x) -#define __adf_os_cpu_to_le64(x) x - -#define __adf_os_cpu_to_be16(x) x -#define __adf_os_cpu_to_be32(x) x -#define __adf_os_cpu_to_be64(x) x - -#define __adf_os_le16_to_cpu(x) __bswap16(x) -#define __adf_os_le32_to_cpu(x) __bswap32(x) -#define __adf_os_le64_to_cpu(x) x - -#define __adf_os_be16_to_cpu(x) x -#define __adf_os_be32_to_cpu(x) x -#define __adf_os_be64_to_cpu(x) x #endif