1 /* 2 * linux/arch/arm/mach-omap1/opp_data.c 3 * 4 * Copyright (C) 2004 - 2005 Nokia corporation 5 * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> 6 * Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License version 2 as 10 * published by the Free Software Foundation. 11 */ 12 13 #include "clock.h" 14 #include "opp.h" 15 16 /*------------------------------------------------------------------------- 17 * Omap1 MPU rate table 18 *-------------------------------------------------------------------------*/ 19 struct mpu_rate omap1_rate_table[] = { 20 /* MPU MHz, xtal MHz, dpll1 MHz, CKCTL, DPLL_CTL 21 * NOTE: Comment order here is different from bits in CKCTL value: 22 * armdiv, dspdiv, dspmmu, tcdiv, perdiv, lcddiv 23 */ 24 { 216000000, 12000000, 216000000, 0x050d, 0x2910, /* 1/1/2/2/2/8 */ 25 CK_1710 }, 26 { 195000000, 13000000, 195000000, 0x050e, 0x2790, /* 1/1/2/2/4/8 */ 27 CK_7XX }, 28 { 192000000, 19200000, 192000000, 0x050f, 0x2510, /* 1/1/2/2/8/8 */ 29 CK_16XX }, 30 { 192000000, 12000000, 192000000, 0x050f, 0x2810, /* 1/1/2/2/8/8 */ 31 CK_16XX }, 32 { 96000000, 12000000, 192000000, 0x055f, 0x2810, /* 2/2/2/2/8/8 */ 33 CK_16XX }, 34 { 48000000, 12000000, 192000000, 0x0baf, 0x2810, /* 4/4/4/8/8/8 */ 35 CK_16XX }, 36 { 24000000, 12000000, 192000000, 0x0fff, 0x2810, /* 8/8/8/8/8/8 */ 37 CK_16XX }, 38 { 182000000, 13000000, 182000000, 0x050e, 0x2710, /* 1/1/2/2/4/8 */ 39 CK_7XX }, 40 { 168000000, 12000000, 168000000, 0x010f, 0x2710, /* 1/1/1/2/8/8 */ 41 CK_16XX|CK_7XX }, 42 { 150000000, 12000000, 150000000, 0x010a, 0x2cb0, /* 1/1/1/2/4/4 */ 43 CK_1510 }, 44 { 120000000, 12000000, 120000000, 0x010a, 0x2510, /* 1/1/1/2/4/4 */ 45 CK_16XX|CK_1510|CK_310|CK_7XX }, 46 { 96000000, 12000000, 96000000, 0x0005, 0x2410, /* 1/1/1/1/2/2 */ 47 CK_16XX|CK_1510|CK_310|CK_7XX }, 48 { 60000000, 12000000, 60000000, 0x0005, 0x2290, /* 1/1/1/1/2/2 */ 49 CK_16XX|CK_1510|CK_310|CK_7XX }, 50 { 30000000, 12000000, 60000000, 0x0555, 0x2290, /* 2/2/2/2/2/2 */ 51 CK_16XX|CK_1510|CK_310|CK_7XX }, 52 { 0, 0, 0, 0, 0 }, 53 }; 54 55