From: oharboe at B. <oh...@ma...> - 2009-09-04 21:35:12
|
Author: oharboe Date: 2009-09-04 21:35:10 +0200 (Fri, 04 Sep 2009) New Revision: 2673 Modified: trunk/src/target/mips_m4k.c Log: Mahr, Stefan <Ste...@sp...> removes the endianness swapping in mips_m4k.c Swapping is already done in target.c Modified: trunk/src/target/mips_m4k.c =================================================================== --- trunk/src/target/mips_m4k.c 2009-09-04 11:03:26 UTC (rev 2672) +++ trunk/src/target/mips_m4k.c 2009-09-04 19:35:10 UTC (rev 2673) @@ -874,28 +874,6 @@ if (ERROR_OK != retval) return retval; - /* TAP data register is loaded LSB first (little endian) */ - if (target->endianness == TARGET_BIG_ENDIAN) - { - uint32_t i, t32; - uint16_t t16; - - for (i = 0; i < (count*size); i += size) - { - switch (size) - { - case 4: - t32 = le_to_h_u32(&buffer[i]); - h_u32_to_be(&buffer[i], t32); - break; - case 2: - t16 = le_to_h_u16(&buffer[i]); - h_u16_to_be(&buffer[i], t16); - break; - } - } - } - return ERROR_OK; } @@ -919,28 +897,6 @@ if (((size == 4) && (address & 0x3u)) || ((size == 2) && (address & 0x1u))) return ERROR_TARGET_UNALIGNED_ACCESS; - /* TAP data register is loaded LSB first (little endian) */ - if (target->endianness == TARGET_BIG_ENDIAN) - { - uint32_t i, t32; - uint16_t t16; - - for (i = 0; i < (count*size); i += size) - { - switch (size) - { - case 4: - t32 = be_to_h_u32(&buffer[i]); - h_u32_to_le(&buffer[i], t32); - break; - case 2: - t16 = be_to_h_u16(&buffer[i]); - h_u16_to_le(&buffer[i], t16); - break; - } - } - } - /* if noDMA off, use DMAACC mode for memory write */ if (ejtag_info->impcode & EJTAG_IMP_NODMA) return mips32_pracc_write_mem(ejtag_info, address, size, count, (void *)buffer); |