summaryrefslogtreecommitdiff
path: root/chip/stm32/jtag-stm32f100.c
blob: 17b4e08ff1bfe56e417646e598e42dd5f0a28c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
/* Settings to enable JTAG debugging */

#include "jtag.h"
#include "registers.h"

int jtag_pre_init(void)
{
	/* stop TIM1-4 and watchdogs when the JTAG stops the CPU */
	STM32_DBGMCU_CR |= 0x00003f00;

	return EC_SUCCESS;
}