summaryrefslogtreecommitdiff
path: root/chip/stm32/jtag-stm32l15x.c
blob: 7b65400b1c38f71a262ff602a7e97968fe06f395 (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 TIM2-4 and watchdogs when the JTAG stops the CPU */
	STM32_DBGMCU_APB1FZ |= 0x00001807;

	return EC_SUCCESS;
}