aboutsummaryrefslogtreecommitdiff
path: root/src/soc/imgtec/pistachio/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/imgtec/pistachio/reset.c')
-rw-r--r--src/soc/imgtec/pistachio/reset.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/soc/imgtec/pistachio/reset.c b/src/soc/imgtec/pistachio/reset.c
deleted file mode 100644
index cc563372b4..0000000000
--- a/src/soc/imgtec/pistachio/reset.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * 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.
- */
-
-#include <device/mmio.h>
-#include <reset.h>
-
-#define PISTACHIO_WD_ADDR 0xB8102100
-#define PISTACHIO_WD_SW_RST_OFFSET 0x0000
-
-void do_board_reset(void)
-{
- /* Generate system reset */
- write32_x(PISTACHIO_WD_ADDR + PISTACHIO_WD_SW_RST_OFFSET, 0x1);
-}