/*1* linux/arch/arm/mach-omap1/opp.h2*3* Copyright (C) 2004 - 2005 Nokia corporation4* Written by Tuukka Tikkanen <[email protected]>5* Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License version 2 as9* published by the Free Software Foundation.10*/1112#ifndef __ARCH_ARM_MACH_OMAP1_OPP_H13#define __ARCH_ARM_MACH_OMAP1_OPP_H1415#include <linux/types.h>1617struct mpu_rate {18unsigned long rate;19unsigned long xtal;20unsigned long pll_rate;21__u16 ckctl_val;22__u16 dpllctl_val;23};2425extern struct mpu_rate omap1_rate_table[];2627#endif282930