summaryrefslogtreecommitdiffstats
path: root/firmware/target/arm/as3525/system-target.h
blob: 9c5b5a9cd6f1296134cb676dfd34e78f2a4afd27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2008 Rafaël Carré
 *
 * 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; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/
#ifndef SYSTEM_TARGET_H
#define SYSTEM_TARGET_H

/* we need some system things initialized after the kernel init */
#define KDEV_INIT

#include "system-arm.h"
#include "mmu-arm.h"
#include "panic.h"

#include "clock-target.h" /* CPUFREQ_* are defined here */

void kernel_device_init(void);

#define STORAGE_WANTS_ALIGN

/* We can use a interrupt-based mechanism on the fuzev2 */
#define INCREASED_SCROLLWHEEL_POLLING \
    (defined(HAVE_SCROLLWHEEL) && (CONFIG_CPU == AS3525))

#if INCREASED_SCROLLWHEEL_POLLING
/* let the timer interrupt twice as often for the scrollwheel polling */
#define KERNEL_TIMER_FREQ (TIMER_FREQ/2)
#else
#define KERNEL_TIMER_FREQ TIMER_FREQ
#endif

#define AS3525_UNCACHED_ADDR(a) ((typeof(a)) ((uintptr_t)(a) + 0x10000000))
#define AS3525_PHYSICAL_ADDR(a) \
    ((typeof(a)) ((((uintptr_t)(a)) & (MEMORYSIZE*0x100000)) \
        ? (((uintptr_t)(a)) - IRAM_ORIG) \
        : ((uintptr_t)(a))))

#if defined(SANSA_FUZEV2) || defined(SANSA_CLIPPLUS) || defined(SANSA_CLIPZIP)
extern int amsv2_variant;
#endif

#ifdef SANSA_C200V2
/* 0: Backlight on A5, 1: Backlight on A7 */
extern int c200v2_variant;
/* c200v2 changes the timer interval often due to software pwm */
#define TIMER_PERIOD TIMER2_BGLOAD
#else
#define TIMER_PERIOD (KERNEL_TIMER_FREQ/HZ)
#endif

void udelay(unsigned usecs);
static inline void mdelay(unsigned msecs)
{
    udelay(1000 * msecs);
}

void usb_insert_int(void);
void usb_remove_int(void);


#ifdef CONFIG_POWER_SAVING
/* Powersave functions either manipulate the system directly
   or pass enabled flag on to the devices specific function
   dis/enabling powersaving for the selected subsystem
*/
#if (CONFIG_POWER_SAVING & POWERSV_CPU)
void cpu_set_powersave(bool enabled);
#endif
#if (CONFIG_POWER_SAVING & POWERSV_DISP)
void disp_set_powersave(bool enabled);
#endif
#if (CONFIG_POWER_SAVING & POWERSV_DISK)
void disk_set_powersave(bool enabled);
#endif
#if (CONFIG_POWER_SAVING & POWERSV_I2C)
void i2c_set_powersave(bool enabled);
#endif
#endif /*CONFIG_POWER_SAVING*/

#ifdef HAVE_ADJUSTABLE_CPU_FREQ
#define CPU_BOOST_LOCK_DEFINED

static inline bool cpu_boost_lock(void)
{
    bool set_cpu_frequency__lock(void);
    return set_cpu_frequency__lock();
}

static inline void cpu_boost_unlock(void)
{
    void set_cpu_frequency__unlock(void);
    set_cpu_frequency__unlock();
}
#endif /* HAVE_ADJUSTABLE_CPU_FREQ */

struct ams_sd_debug_info
{
    unsigned long mci_nand;
    unsigned long mci_sd;
};

void ams_sd_get_debug_info(struct ams_sd_debug_info *info);
void ams_i2c_get_debug_cpsr(unsigned int *i2c_cpsr);

#endif /* SYSTEM_TARGET_H */