00001 /* 00002 * Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>. 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License as 00006 * published by the Free Software Foundation; either version 2 of the 00007 * License, or any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, but 00010 * WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 00017 */ 00018 00019 FILE_LICENCE ( GPL2_OR_LATER ); 00020 00021 #include <gpxe/bitbash.h> 00022 00023 /** @file 00024 * 00025 * Bit-bashing interfaces 00026 * 00027 */ 00028 00029 /** 00030 * Set/clear output bit 00031 * 00032 * @v basher Bit-bashing interface 00033 * @v bit_id Bit number 00034 * @v data Value to write 00035 * 00036 * If @c data is 0, a logic 0 will be written. If @c data is 00037 * non-zero, a logic 1 will be written. 00038 */ 00039 void write_bit ( struct bit_basher *basher, unsigned int bit_id, 00040 unsigned long data ) { 00041 basher->op->write ( basher, bit_id, ( data ? -1UL : 0 ) ); 00042 } 00043 00044 /** 00045 * Read input bit 00046 * 00047 * @v basher Bit-bashing interface 00048 * @v bit_id Bit number 00049 * @ret data Value read 00050 * 00051 * @c data will always be either 0 or -1UL. The idea is that the 00052 * caller can simply binary-AND the returned value with whatever mask 00053 * it needs to apply. 00054 */ 00055 int read_bit ( struct bit_basher *basher, unsigned int bit_id ) { 00056 return ( basher->op->read ( basher, bit_id ) ? -1UL : 0 ); 00057 }
1.5.7.1