2014-02-12 02:21:20 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <soc/addressmap.h>
|
|
|
|
|
|
|
|
#include "apbmisc.h"
|
|
|
|
|
2014-04-21 11:54:28 +02:00
|
|
|
static struct apbmisc *misc = (struct apbmisc *)TEGRA_APB_MISC_BASE;
|
|
|
|
|
2014-02-12 02:21:20 +01:00
|
|
|
void enable_jtag(void)
|
|
|
|
{
|
|
|
|
write32(PP_CONFIG_CTL_JTAG, &misc->pp_config_ctl);
|
|
|
|
}
|
2014-04-21 11:54:28 +02:00
|
|
|
|
|
|
|
void clamp_tristate_inputs(void)
|
|
|
|
{
|
|
|
|
write32(PP_PINMUX_CLAMP_INPUTS, &misc->pp_pinmux_global);
|
|
|
|
}
|