/* * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ #ifndef _I82557INLINE_H #define _I82557INLINE_H #include #include //--------------------------------------------------------------------------- // CSR macros. #define CSR_VALUE(name, x) (((x) & name ## _MASK) >> name ## _SHIFT) #define CSR_FIELD(name, x) (((x) << name ## _SHIFT) & name ## _MASK) #define CSR_MASK(name, x) ((x) << name ## _SHIFT) #define BIT(x) (1 << (x)) //--------------------------------------------------------------------------- // CSR read & write. static inline UInt8 ReadLE8(volatile void * base) { return *(volatile UInt8 *)base; } static inline UInt16 ReadLE16(volatile void * base) { return OSReadLittleInt16(base, 0); } static inline UInt32 ReadLE32(volatile void * base) { return OSReadLittleInt32(base, 0); } static inline void WriteLE8(volatile void * base, UInt8 data) { *(volatile UInt8 *)base = data; OSSynchronizeIO(); } static inline void WriteLE16(volatile void * base, UInt16 data) { OSWriteLittleInt16(base, 0, data); OSSynchronizeIO(); } static inline void WriteLE32(volatile void * base, UInt32 data) { OSWriteLittleInt32(base, 0, data); OSSynchronizeIO(); } static inline void WriteNoSyncLE8(volatile void * base, UInt8 data) { *(volatile UInt8 *)base = data; } static inline void WriteNoSyncLE16(volatile void * base, UInt16 data) { OSWriteLittleInt16(base, 0, data); } static inline void WriteNoSyncLE32(volatile void * base, UInt32 data) { OSWriteLittleInt32(base, 0, data); } //--------------------------------------------------------------------------- // Set/clear bit(s) macros. Not atomic. #define __SET(n) \ static inline void \ SetLE##n(volatile void * base, UInt##n bit) \ { \ WriteLE##n(base, (ReadLE##n(base) | (bit))); \ } #define __CLR(n) \ static inline void \ ClearLE##n(volatile void * base, UInt##n bit) \ { \ WriteLE##n(base, (ReadLE##n(base) & ~(bit))); \ } __SET(8) __SET(16) __SET(32) __CLR(8) __CLR(16) __CLR(32) #endif /* !_I82557INLINE_H */