adi_v5: Make sure all bit masks are unsigned and wide enough.
[fw/openocd] / src / target / mips32_dmaacc.h
index c8a64fb98579ad67c0f2591edb7c84c589884d32..45d5b3614d5b70baeae20ea5e5ca3110ac7c8af9 100644 (file)
@@ -20,8 +20,9 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
  ***************************************************************************/
+
 #ifndef MIPS32_DMAACC_H
 #define MIPS32_DMAACC_H
 
 
 #define RETRY_ATTEMPTS 0
 
-int mips32_dmaacc_read_mem(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int size, int count, void *buf);
-int mips32_dmaacc_write_mem(mips_ejtag_t *ejtag_info,
+int mips32_dmaacc_read_mem(struct mips_ejtag *ejtag_info,
                uint32_t addr, int size, int count, void *buf);
-
-int mips32_dmaacc_read_mem8(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint8_t *buf);
-int mips32_dmaacc_read_mem16(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint16_t *buf);
-int mips32_dmaacc_read_mem32(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint32_t *buf);
-
-int mips32_dmaacc_write_mem8(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint8_t *buf);
-int mips32_dmaacc_write_mem16(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint16_t *buf);
-int mips32_dmaacc_write_mem32(mips_ejtag_t *ejtag_info,
-               uint32_t addr, int count, uint32_t *buf);
+int mips32_dmaacc_write_mem(struct mips_ejtag *ejtag_info,
+               uint32_t addr, int size, int count, const void *buf);
 
 #endif