summaryrefslogtreecommitdiff
path: root/firmware/target/arm/s3c2440/gigabeat-fx/system-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/s3c2440/gigabeat-fx/system-target.h')
-rw-r--r--firmware/target/arm/s3c2440/gigabeat-fx/system-target.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/firmware/target/arm/s3c2440/gigabeat-fx/system-target.h b/firmware/target/arm/s3c2440/gigabeat-fx/system-target.h
deleted file mode 100644
index f310b9ac26..0000000000
--- a/firmware/target/arm/s3c2440/gigabeat-fx/system-target.h
+++ /dev/null
@@ -1,44 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2007 by Greg White
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21#ifndef SYSTEM_TARGET_H
22#define SYSTEM_TARGET_H
23
24#include "system-arm.h"
25#include "mmu-arm.h"
26
27#define CPUFREQ_DEFAULT 98784000
28#define CPUFREQ_NORMAL 98784000
29#define CPUFREQ_MAX 296352000
30
31void system_prepare_fw_start(void);
32void tick_stop(void);
33
34/* Functions to set and clear regiser bits atomically */
35
36/* Set and clear register bits */
37void s3c_regmod32(volatile unsigned long *reg, unsigned long bits,
38 unsigned long mask);
39/* Set register bits */
40void s3c_regset32(volatile unsigned long *reg, unsigned long bits);
41/* Clear register bits */
42void s3c_regclr32(volatile unsigned long *reg, unsigned long bits);
43
44#endif /* SYSTEM_TARGET_H */