From 849369d6c66d3054688672f97d31fceb8e8230fb Mon Sep 17 00:00:00 2001 From: root Date: Fri, 25 Dec 2015 04:40:36 +0000 Subject: initial_commit --- arch/arm/mach-mx5/cpu_op-mx53.c | 204 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100755 arch/arm/mach-mx5/cpu_op-mx53.c (limited to 'arch/arm/mach-mx5/cpu_op-mx53.c') diff --git a/arch/arm/mach-mx5/cpu_op-mx53.c b/arch/arm/mach-mx5/cpu_op-mx53.c new file mode 100755 index 00000000..debe1bc4 --- /dev/null +++ b/arch/arm/mach-mx5/cpu_op-mx53.c @@ -0,0 +1,204 @@ +/* + * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved. + */ + +/* + * 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 program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include +#include +#include +#include +#include "cpu_op-mx53.h" + +/*! + * @file mach-mx5/cpu_op-mx53.c + * + * @brief This file contains the information about MX53 CPU working points. + * + * @ingroup MSL_MX53 + */ +extern struct cpu_op *(*get_cpu_op)(int *op); +extern void (*set_num_cpu_op)(int num); +extern struct dvfs_op *(*get_dvfs_core_op)(int *wp); + +static int num_cpu_op; +static struct cpu_op *cpu_op_table; + +static struct dvfs_op *dvfs_core_setpoint; +static int num_dvfs_core_setpoint; + +/* Place holder for dvfs_core setpoints for AEC parts */ +static struct dvfs_op dvfs_core_setpoint_aec[] = { + {33, 0, 33, 10, 10, 0x08} }; /*800MHz*/ + +/* Place holder for dvfs_core setpoints for 1.2GHz parts */ +static struct dvfs_op dvfs_core_setpoint_ces_1_2G[] = { + {33, 25, 33, 10, 10, 0x08}, /*1_2GHz*/ + {30, 18, 33, 20, 10, 0x08}, /* 800MHz */ + {25, 8, 33, 20, 10, 0x08}, /* 400MHz */ + {28, 8, 33, 20, 30, 0x08}, /* 400MHZ, 133MHz */ + {29, 0, 33, 20, 10, 0x08},}; /* 400MHZ, 50MHz. */ + +/* Place holder for dvfs_core setpoints for 1 GHz parts */ +static struct dvfs_op dvfs_core_setpoint_ces[] = { + {33, 25, 33, 10, 10, 0x08}, /*1GHz*/ + {30, 18, 33, 20, 10, 0x08}, /* 800MHz */ + {25, 8, 33, 20, 10, 0x08}, /* 400MHz */ + {28, 8, 33, 20, 30, 0x08}, /* 400MHz, 133MHz */ + {29, 0, 33, 20, 10, 0x08},}; /* 400MHz, 50MHz. */ + +/* working point for auto*/ +static struct cpu_op cpu_op_aec[] = { + { + .pll_rate = 800000000, + .cpu_rate = 800000000, + .pdf = 0, + .mfi = 8, + .mfd = 2, + .mfn = 1, + .cpu_podf = 0, + .cpu_voltage = 1050000,}, +}; + +/* working point for consumer 1G*/ +static struct cpu_op cpu_op_ces[] = { + { + .pll_rate = 1000000000, + .cpu_rate = 1000000000, + .pdf = 0, + .mfi = 10, + .mfd = 11, + .mfn = 5, + .cpu_podf = 0, + .cpu_voltage = 1200000,}, + { + .pll_rate = 800000000, + .cpu_rate = 800000000, + .pdf = 0, + .mfi = 8, + .mfd = 2, + .mfn = 1, + .cpu_podf = 0, + .cpu_voltage = 1050000,}, + { + .pll_rate = 800000000, + .cpu_rate = 400000000, + .cpu_podf = 1, + .cpu_voltage = 950000,}, + { + .pll_rate = 800000000, + .cpu_rate = 160000000, + .cpu_podf = 4, + .cpu_voltage = 900000,}, +}; + +/* working point for consumer 1.2G*/ +static struct cpu_op cpu_op_ces_1_2g[] = { + { + .pll_rate = 1200000000, + .cpu_rate = 1200000000, + .pdf = 0, + .mfi = 12, + .mfd = 1, + .mfn = 1, + .cpu_podf = 0, + .cpu_voltage = 1300000,}, + { + .pll_rate = 1000000000, + .cpu_rate = 1000000000, + .pdf = 0, + .mfi = 10, + .mfd = 11, + .mfn = 5, + .cpu_podf = 0, + .cpu_voltage = 1200000,}, + { + .pll_rate = 800000000, + .cpu_rate = 800000000, + .pdf = 0, + .mfi = 8, + .mfd = 2, + .mfn = 1, + .cpu_podf = 0, + .cpu_voltage = 1050000,}, + { + .pll_rate = 800000000, + .cpu_rate = 400000000, + .cpu_podf = 1, + .cpu_voltage = 950000,}, + { + .pll_rate = 800000000, + .cpu_rate = 160000000, + .cpu_podf = 4, + .cpu_voltage = 900000,}, +}; + +static struct dvfs_op *mx53_get_dvfs_core_table(int *wp) +{ + /* Add 2 to num_cpu_wp to handle LPAPM mode transitions. */ + *wp = num_dvfs_core_setpoint; + return dvfs_core_setpoint; +} + +struct cpu_op *mx53_get_cpu_op(int *op) +{ + *op = num_cpu_op; + return cpu_op_table; +} + +void mx53_set_num_cpu_op(int num) +{ + num_cpu_op = num; + return; +} + +void mx53_cpu_op_init() +{ + get_cpu_op = mx53_get_cpu_op; + set_num_cpu_op = mx53_set_num_cpu_op; + get_dvfs_core_op = mx53_get_dvfs_core_table; +} + +void mx53_set_cpu_part_number(enum mx53_cpu_part_number part_num) +{ + switch (part_num) { + case IMX53_CEC_1_2G: + cpu_op_table = cpu_op_ces_1_2g; + num_cpu_op = ARRAY_SIZE(cpu_op_ces_1_2g); + dvfs_core_setpoint = dvfs_core_setpoint_ces_1_2G; + num_dvfs_core_setpoint = + ARRAY_SIZE(dvfs_core_setpoint_ces_1_2G); + break; + case IMX53_CEC: + cpu_op_table = cpu_op_ces; + num_cpu_op = ARRAY_SIZE(cpu_op_ces); + dvfs_core_setpoint = dvfs_core_setpoint_ces; + num_dvfs_core_setpoint = + ARRAY_SIZE(dvfs_core_setpoint_ces); + break; + case IMX53_AEC: + default: + cpu_op_table = cpu_op_aec; + num_cpu_op = ARRAY_SIZE(cpu_op_aec); + dvfs_core_setpoint = dvfs_core_setpoint_aec; + num_dvfs_core_setpoint = + ARRAY_SIZE(dvfs_core_setpoint_aec); + break; + } +} + + -- cgit v1.2.3