~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to arch/arm/mach-ux500/include/mach/prcmu-defs.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) STMicroelectronics 2009
3
 
 * Copyright (C) ST-Ericsson SA 2010
4
 
 *
5
 
 * Author: Sundar Iyer <sundar.iyer@stericsson.com>
6
 
 * Author: Martin Persson <martin.persson@stericsson.com>
7
 
 *
8
 
 * License Terms: GNU General Public License v2
9
 
 *
10
 
 * PRCM Unit definitions
11
 
 */
12
 
 
13
 
#ifndef __MACH_PRCMU_DEFS_H
14
 
#define __MACH_PRCMU_DEFS_H
15
 
 
16
 
enum prcmu_cpu_opp {
17
 
        CPU_OPP_INIT      = 0x00,
18
 
        CPU_OPP_NO_CHANGE = 0x01,
19
 
        CPU_OPP_100       = 0x02,
20
 
        CPU_OPP_50        = 0x03,
21
 
        CPU_OPP_MAX       = 0x04,
22
 
        CPU_OPP_EXT_CLK   = 0x07
23
 
};
24
 
enum prcmu_ape_opp {
25
 
        APE_OPP_NO_CHANGE = 0x00,
26
 
        APE_OPP_100       = 0x02,
27
 
        APE_OPP_50        = 0x03,
28
 
};
29
 
 
30
 
#endif /* __MACH_PRCMU_DEFS_H */