- correctly mask out bits that aren't part of a copied buffer
- fixed arm926ej-s CP15 register access handling - correctly identify SYSCLK source in LPC3180 NAND flash controller driver git-svn-id: svn://svn.berlios.de/openocd/trunk@139 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -150,7 +150,7 @@ float lpc3180_cycle_time(lpc3180_nand_controller_t *lpc3180_info)
|
||||
/* determine current SYSCLK (13'MHz or main oscillator) */
|
||||
target_read_u32(target, 0x40004050, &sysclk_ctrl);
|
||||
|
||||
if (sysclk_ctrl & 1)
|
||||
if ((sysclk_ctrl & 1) == 0)
|
||||
sysclk = lpc3180_info->osc_freq;
|
||||
else
|
||||
sysclk = 13000;
|
||||
|
||||
Reference in New Issue
Block a user