/*1* Copyright (C) 2010 Freescale Semiconductor, Inc. All Rights Reserved.2*/34/*5* The code contained herein is licensed under the GNU General Public6* License. You may obtain a copy of the GNU General Public License7* Version 2 or later at the following locations:8*9* http://www.opensource.org/licenses/gpl-license.html10* http://www.gnu.org/copyleft/gpl.html11*/1213#include <linux/types.h>14#include <mach/hardware.h>15#include <linux/kernel.h>1617static struct cpu_op mx51_cpu_op[] = {18{19.cpu_rate = 160000000,},20{21.cpu_rate = 800000000,},22};2324struct cpu_op *mx51_get_cpu_op(int *op)25{26*op = ARRAY_SIZE(mx51_cpu_op);27return mx51_cpu_op;28}293031