f991fae5c6
- Hotplug changes allowing device hot-removal operations to fail gracefully (instead of crashing the kernel) if they cannot be carried out completely. From Rafael J Wysocki and Toshi Kani. - Freezer update from Colin Cross and Mandeep Singh Baines targeted at making the freezing of tasks a bit less heavy weight operation. - cpufreq resume fix from Srivatsa S Bhat for a regression introduced during the 3.10 cycle causing some cpufreq sysfs attributes to return wrong values to user space after resume. - New freqdomain_cpus sysfs attribute for the acpi-cpufreq driver to provide information previously available via related_cpus from Lan Tianyu. - cpufreq fixes and cleanups from Viresh Kumar, Jacob Shin, Heiko Stübner, Xiaoguang Chen, Ezequiel Garcia, Arnd Bergmann, and Tang Yuantian. - Fix for an ACPICA regression causing suspend/resume issues to appear on some systems introduced during the 3.4 development cycle from Lv Zheng. - ACPICA fixes and cleanups from Bob Moore, Tomasz Nowicki, Lv Zheng, Chao Guan, and Zhang Rui. - New cupidle driver for Xilinx Zynq processors from Michal Simek. - cpuidle fixes and cleanups from Daniel Lezcano. - Changes to make suspend/resume work correctly in Xen guests from Konrad Rzeszutek Wilk. - ACPI device power management fixes and cleanups from Fengguang Wu and Rafael J Wysocki. - ACPI documentation updates from Lv Zheng, Aaron Lu and Hanjun Guo. - Fix for the IA-64 issue that was the reason for reverting commit9f29ab1
and updates of the ACPI scan code from Rafael J Wysocki. - Mechanism for adding CMOS RTC address space handlers from Lan Tianyu (to allow some EC-related breakage to be fixed on some systems). - Spec-compliant implementation of acpi_os_get_timer() from Mika Westerberg. - Modification of do_acpi_find_child() to execute _STA in order to to avoid situations in which a pointer to a disabled device object is returned instead of an enabled one with the same _ADR value. From Jeff Wu. - Intel BayTrail PCH (Platform Controller Hub) support for the ACPI Intel Low-Power Subsystems (LPSS) driver and modificaions of that driver to work around a couple of known BIOS issues from Mika Westerberg and Heikki Krogerus. - EC driver fix from Vasiliy Kulikov to make it use get_user() and put_user() instead of dereferencing user space pointers blindly. - Assorted ACPI code cleanups from Bjorn Helgaas, Nicholas Mazzuca and Toshi Kani. - Modification of the "runtime idle" helper routine to take the return values of the callbacks executed by it into account and to call rpm_suspend() if they return 0, which allows some code bloat reduction to be done, from Rafael J Wysocki and Alan Stern. - New trace points for PM QoS from Sahara <keun-o.park@windriver.com>. - PM QoS documentation update from Lan Tianyu. - Assorted core PM code cleanups and changes from Bernie Thompson, Bjorn Helgaas, Julius Werner, and Shuah Khan. - New devfreq driver for the Exynos5-bus device from Abhilash Kesavan. - Minor devfreq cleanups, fixes and MAINTAINERS update from MyungJoo Ham, Abhilash Kesavan, Paul Bolle, Rajagopal Venkat, and Wei Yongjun. - OMAP Adaptive Voltage Scaling (AVS) SmartReflex voltage control driver updates from Andrii Tseglytskyi and Nishanth Menon. / -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (GNU/Linux) iQIcBAABAgAGBQJR0ZNOAAoJEKhOf7ml8uNsDLYP/0EU4rmvw0TWTITfp6RS1KDE 9GwBn96ZR4Q5bJd9gBCTPSqhHOYMqxWEUp99sn/M2wehG1pk/jw5LO56+2IhM3UZ g1HDcJ7te2nVT/iXsKiAGTVhU9Rk0aYwoVSknwk27qpIBGxW9w/s5tLX8pY3Q3Zq wL/7aTPjyL+PFFFEaxgH7qLqsl3DhbtYW5AriUBTkXout/tJ4eO1b7MNBncLDh8X VQ/0DNCKE95VEJfkO4rk9RKUyVp9GDn0i+HXCD/FS4IA5oYzePdVdNDmXf7g+swe CGlTZq8pB+oBpDiHl4lxzbNrKQjRNbGnDUkoRcWqn0nAw56xK+vmYnWJhW99gQ/I fKnvxeLca5po1aiqmC4VSJxZIatFZqLrZAI4dzoCLWY+bGeTnCKmj0/F8ytFnZA2 8IuLLs7/dFOaHXV/pKmpg6FAlFa9CPxoqRFoyqb4M0GjEarADyalXUWsPtG+6xCp R/p0CISpwk+guKZR/qPhL7M654S7SHrPwd2DPF0KgGsvk+G2GhoB8EzvD8BVp98Z 9siCGCdgKQfJQVI6R0k9aFmn/4gRQIAgyPhkhv9tqULUUkiaXki+/t8kPfnb8O/d zep+CA57E2G8MYLkDJfpFeKS7GpPD6TIdgFdGmOUC0Y6sl9iTdiw4yTx8O2JM37z rHBZfYGkJBrbGRu+Q1gs =VBBq -----END PGP SIGNATURE----- Merge tag 'pm+acpi-3.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm Pull power management and ACPI updates from Rafael Wysocki: "This time the total number of ACPI commits is slightly greater than the number of cpufreq commits, but Viresh Kumar (who works on cpufreq) remains the most active patch submitter. To me, the most significant change is the addition of offline/online device operations to the driver core (with the Greg's blessing) and the related modifications of the ACPI core hotplug code. Next are the freezer updates from Colin Cross that should make the freezing of tasks a bit less heavy weight. We also have a couple of regression fixes, a number of fixes for issues that have not been identified as regressions, two new drivers and a bunch of cleanups all over. Highlights: - Hotplug changes to support graceful hot-removal failures. It sometimes is necessary to fail device hot-removal operations gracefully if they cannot be carried out completely. For example, if memory from a memory module being hot-removed has been allocated for the kernel's own use and cannot be moved elsewhere, it's desirable to fail the hot-removal operation in a graceful way rather than to crash the kernel, but currenty a success or a kernel crash are the only possible outcomes of an attempted memory hot-removal. Needless to say, that is not a very attractive alternative and it had to be addressed. However, in order to make it work for memory, I first had to make it work for CPUs and for this purpose I needed to modify the ACPI processor driver. It's been split into two parts, a resident one handling the low-level initialization/cleanup and a modular one playing the actual driver's role (but it binds to the CPU system device objects rather than to the ACPI device objects representing processors). That's been sort of like a live brain surgery on a patient who's riding a bike. So this is a little scary, but since we found and fixed a couple of regressions it caused to happen during the early linux-next testing (a month ago), nobody has complained. As a bonus we remove some duplicated ACPI hotplug code, because the ACPI-based CPU hotplug is now going to use the common ACPI hotplug code. - Lighter weight freezing of tasks. These changes from Colin Cross and Mandeep Singh Baines are targeted at making the freezing of tasks a bit less heavy weight operation. They reduce the number of tasks woken up every time during the freezing, by using the observation that the freezer simply doesn't need to wake up some of them and wait for them all to call refrigerator(). The time needed for the freezer to decide to report a failure is reduced too. Also reintroduced is the check causing a lockdep warining to trigger when try_to_freeze() is called with locks held (which is generally unsafe and shouldn't happen). - cpufreq updates First off, a commit from Srivatsa S Bhat fixes a resume regression introduced during the 3.10 cycle causing some cpufreq sysfs attributes to return wrong values to user space after resume. The fix is kind of fresh, but also it's pretty obvious once Srivatsa has identified the root cause. Second, we have a new freqdomain_cpus sysfs attribute for the acpi-cpufreq driver to provide information previously available via related_cpus. From Lan Tianyu. Finally, we fix a number of issues, mostly related to the CPUFREQ_POSTCHANGE notifier and cpufreq Kconfig options and clean up some code. The majority of changes from Viresh Kumar with bits from Jacob Shin, Heiko Stübner, Xiaoguang Chen, Ezequiel Garcia, Arnd Bergmann, and Tang Yuantian. - ACPICA update A usual bunch of updates from the ACPICA upstream. During the 3.4 cycle we introduced support for ACPI 5 extended sleep registers, but they are only supposed to be used if the HW-reduced mode bit is set in the FADT flags and the code attempted to use them without checking that bit. That caused suspend/resume regressions to happen on some systems. Fix from Lv Zheng causes those registers to be used only if the HW-reduced mode bit is set. Apart from this some other ACPICA bugs are fixed and code cleanups are made by Bob Moore, Tomasz Nowicki, Lv Zheng, Chao Guan, and Zhang Rui. - cpuidle updates New driver for Xilinx Zynq processors is added by Michal Simek. Multidriver support simplification, addition of some missing kerneldoc comments and Kconfig-related fixes come from Daniel Lezcano. - ACPI power management updates Changes to make suspend/resume work correctly in Xen guests from Konrad Rzeszutek Wilk, sparse warning fix from Fengguang Wu and cleanups and fixes of the ACPI device power state selection routine. - ACPI documentation updates Some previously missing pieces of ACPI documentation are added by Lv Zheng and Aaron Lu (hopefully, that will help people to uderstand how the ACPI subsystem works) and one outdated doc is updated by Hanjun Guo. - Assorted ACPI updates We finally nailed down the IA-64 issue that was the reason for reverting commit9f29ab11dd
("ACPI / scan: do not match drivers against objects having scan handlers"), so we can fix it and move the ACPI scan handler check added to the ACPI video driver back to the core. A mechanism for adding CMOS RTC address space handlers is introduced by Lan Tianyu to allow some EC-related breakage to be fixed on some systems. A spec-compliant implementation of acpi_os_get_timer() is added by Mika Westerberg. The evaluation of _STA is added to do_acpi_find_child() to avoid situations in which a pointer to a disabled device object is returned instead of an enabled one with the same _ADR value. From Jeff Wu. Intel BayTrail PCH (Platform Controller Hub) support is added to the ACPI driver for Intel Low-Power Subsystems (LPSS) and that driver is modified to work around a couple of known BIOS issues. Changes from Mika Westerberg and Heikki Krogerus. The EC driver is fixed by Vasiliy Kulikov to use get_user() and put_user() instead of dereferencing user space pointers blindly. Code cleanups are made by Bjorn Helgaas, Nicholas Mazzuca and Toshi Kani. - Assorted power management updates The "runtime idle" helper routine is changed to take the return values of the callbacks executed by it into account and to call rpm_suspend() if they return 0, which allows us to reduce the overall code bloat a bit (by dropping some code that's not necessary any more after that modification). The runtime PM documentation is updated by Alan Stern (to reflect the "runtime idle" behavior change). New trace points for PM QoS are added by Sahara (<keun-o.park@windriver.com>). PM QoS documentation is updated by Lan Tianyu. Code cleanups are made and minor issues are addressed by Bernie Thompson, Bjorn Helgaas, Julius Werner, and Shuah Khan. - devfreq updates New driver for the Exynos5-bus device from Abhilash Kesavan. Minor cleanups, fixes and MAINTAINERS update from MyungJoo Ham, Abhilash Kesavan, Paul Bolle, Rajagopal Venkat, and Wei Yongjun. - OMAP power management updates Adaptive Voltage Scaling (AVS) SmartReflex voltage control driver updates from Andrii Tseglytskyi and Nishanth Menon." * tag 'pm+acpi-3.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: (162 commits) cpufreq: Fix cpufreq regression after suspend/resume ACPI / PM: Fix possible NULL pointer deref in acpi_pm_device_sleep_state() PM / Sleep: Warn about system time after resume with pm_trace cpufreq: don't leave stale policy pointer in cdbs->cur_policy acpi-cpufreq: Add new sysfs attribute freqdomain_cpus cpufreq: make sure frequency transitions are serialized ACPI: implement acpi_os_get_timer() according the spec ACPI / EC: Add HP Folio 13 to ec_dmi_table in order to skip DSDT scan ACPI: Add CMOS RTC Operation Region handler support ACPI / processor: Drop unused variable from processor_perflib.c cpufreq: tegra: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: s3c64xx: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: omap: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: imx6q: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: exynos: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: dbx500: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: davinci: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: arm-big-little: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: powernow-k8: call CPUFREQ_POSTCHANGE notfier in error cases cpufreq: pcc: call CPUFREQ_POSTCHANGE notfier in error cases ...
294 lines
9.0 KiB
C
294 lines
9.0 KiB
C
/* arch/arm/plat-samsung/include/plat/cpu-freq-core.h
|
|
*
|
|
* Copyright (c) 2006-2009 Simtec Electronics
|
|
* http://armlinux.simtec.co.uk/
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
*
|
|
* S3C CPU frequency scaling support - core support
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <plat/cpu-freq.h>
|
|
|
|
struct seq_file;
|
|
|
|
#define MAX_BANKS (8)
|
|
#define S3C2412_MAX_IO (8)
|
|
|
|
/**
|
|
* struct s3c2410_iobank_timing - IO bank timings for S3C2410 style timings
|
|
* @bankcon: The cached version of settings in this structure.
|
|
* @tacp:
|
|
* @tacs: Time from address valid to nCS asserted.
|
|
* @tcos: Time from nCS asserted to nOE or nWE asserted.
|
|
* @tacc: Time that nOE or nWE is asserted.
|
|
* @tcoh: Time nCS is held after nOE or nWE are released.
|
|
* @tcah: Time address is held for after
|
|
* @nwait_en: Whether nWAIT is enabled for this bank.
|
|
*
|
|
* This structure represents the IO timings for a S3C2410 style IO bank
|
|
* used by the CPU frequency support if it needs to change the settings
|
|
* of the IO.
|
|
*/
|
|
struct s3c2410_iobank_timing {
|
|
unsigned long bankcon;
|
|
unsigned int tacp;
|
|
unsigned int tacs;
|
|
unsigned int tcos;
|
|
unsigned int tacc;
|
|
unsigned int tcoh; /* nCS hold afrer nOE/nWE */
|
|
unsigned int tcah; /* Address hold after nCS */
|
|
unsigned char nwait_en; /* nWait enabled for bank. */
|
|
};
|
|
|
|
/**
|
|
* struct s3c2412_iobank_timing - io timings for PL092 (S3C2412) style IO
|
|
* @idcy: The idle cycle time between transactions.
|
|
* @wstrd: nCS release to end of read cycle.
|
|
* @wstwr: nCS release to end of write cycle.
|
|
* @wstoen: nCS assertion to nOE assertion time.
|
|
* @wstwen: nCS assertion to nWE assertion time.
|
|
* @wstbrd: Burst ready delay.
|
|
* @smbidcyr: Register cache for smbidcyr value.
|
|
* @smbwstrd: Register cache for smbwstrd value.
|
|
* @smbwstwr: Register cache for smbwstwr value.
|
|
* @smbwstoen: Register cache for smbwstoen value.
|
|
* @smbwstwen: Register cache for smbwstwen value.
|
|
* @smbwstbrd: Register cache for smbwstbrd value.
|
|
*
|
|
* Timing information for a IO bank on an S3C2412 or similar system which
|
|
* uses a PL093 block.
|
|
*/
|
|
struct s3c2412_iobank_timing {
|
|
unsigned int idcy;
|
|
unsigned int wstrd;
|
|
unsigned int wstwr;
|
|
unsigned int wstoen;
|
|
unsigned int wstwen;
|
|
unsigned int wstbrd;
|
|
|
|
/* register cache */
|
|
unsigned char smbidcyr;
|
|
unsigned char smbwstrd;
|
|
unsigned char smbwstwr;
|
|
unsigned char smbwstoen;
|
|
unsigned char smbwstwen;
|
|
unsigned char smbwstbrd;
|
|
};
|
|
|
|
union s3c_iobank {
|
|
struct s3c2410_iobank_timing *io_2410;
|
|
struct s3c2412_iobank_timing *io_2412;
|
|
};
|
|
|
|
/**
|
|
* struct s3c_iotimings - Chip IO timings holder
|
|
* @bank: The timings for each IO bank.
|
|
*/
|
|
struct s3c_iotimings {
|
|
union s3c_iobank bank[MAX_BANKS];
|
|
};
|
|
|
|
/**
|
|
* struct s3c_plltab - PLL table information.
|
|
* @vals: List of PLL values.
|
|
* @size: Size of the PLL table @vals.
|
|
*/
|
|
struct s3c_plltab {
|
|
struct s3c_pllval *vals;
|
|
int size;
|
|
};
|
|
|
|
/**
|
|
* struct s3c_cpufreq_config - current cpu frequency configuration
|
|
* @freq: The current settings for the core clocks.
|
|
* @max: Maxium settings, derived from core, board and user settings.
|
|
* @pll: The PLL table entry for the current PLL settings.
|
|
* @divs: The divisor settings for the core clocks.
|
|
* @info: The current core driver information.
|
|
* @board: The information for the board we are running on.
|
|
* @lock_pll: Set if the PLL settings cannot be changed.
|
|
*
|
|
* This is for the core drivers that need to know information about
|
|
* the current settings and values. It should not be needed by any
|
|
* device drivers.
|
|
*/
|
|
struct s3c_cpufreq_config {
|
|
struct s3c_freq freq;
|
|
struct s3c_freq max;
|
|
struct cpufreq_frequency_table pll;
|
|
struct s3c_clkdivs divs;
|
|
struct s3c_cpufreq_info *info; /* for core, not drivers */
|
|
struct s3c_cpufreq_board *board;
|
|
|
|
unsigned int lock_pll:1;
|
|
};
|
|
|
|
/**
|
|
* struct s3c_cpufreq_info - Information for the CPU frequency driver.
|
|
* @name: The name of this implementation.
|
|
* @max: The maximum frequencies for the system.
|
|
* @latency: Transition latency to give to cpufreq.
|
|
* @locktime_m: The lock-time in uS for the MPLL.
|
|
* @locktime_u: The lock-time in uS for the UPLL.
|
|
* @locttime_bits: The number of bits each LOCKTIME field.
|
|
* @need_pll: Set if this driver needs to change the PLL values to achieve
|
|
* any frequency changes. This is really only need by devices like the
|
|
* S3C2410 where there is no or limited divider between the PLL and the
|
|
* ARMCLK.
|
|
* @resume_clocks: Update the clocks on resume.
|
|
* @get_iotiming: Get the current IO timing data, mainly for use at start.
|
|
* @set_iotiming: Update the IO timings from the cached copies calculated
|
|
* from the @calc_iotiming entry when changing the frequency.
|
|
* @calc_iotiming: Calculate and update the cached copies of the IO timings
|
|
* from the newly calculated frequencies.
|
|
* @calc_freqtable: Calculate (fill in) the given frequency table from the
|
|
* current frequency configuration. If the table passed in is NULL,
|
|
* then the return is the number of elements to be filled for allocation
|
|
* of the table.
|
|
* @set_refresh: Set the memory refresh configuration.
|
|
* @set_fvco: Set the PLL frequencies.
|
|
* @set_divs: Update the clock divisors.
|
|
* @calc_divs: Calculate the clock divisors.
|
|
*/
|
|
struct s3c_cpufreq_info {
|
|
const char *name;
|
|
struct s3c_freq max;
|
|
|
|
unsigned int latency;
|
|
|
|
unsigned int locktime_m;
|
|
unsigned int locktime_u;
|
|
unsigned char locktime_bits;
|
|
|
|
unsigned int need_pll:1;
|
|
|
|
/* driver routines */
|
|
|
|
void (*resume_clocks)(void);
|
|
|
|
int (*get_iotiming)(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *timings);
|
|
|
|
void (*set_iotiming)(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *timings);
|
|
|
|
int (*calc_iotiming)(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *timings);
|
|
|
|
int (*calc_freqtable)(struct s3c_cpufreq_config *cfg,
|
|
struct cpufreq_frequency_table *t,
|
|
size_t table_size);
|
|
|
|
void (*debug_io_show)(struct seq_file *seq,
|
|
struct s3c_cpufreq_config *cfg,
|
|
union s3c_iobank *iob);
|
|
|
|
void (*set_refresh)(struct s3c_cpufreq_config *cfg);
|
|
void (*set_fvco)(struct s3c_cpufreq_config *cfg);
|
|
void (*set_divs)(struct s3c_cpufreq_config *cfg);
|
|
int (*calc_divs)(struct s3c_cpufreq_config *cfg);
|
|
};
|
|
|
|
extern int s3c_cpufreq_register(struct s3c_cpufreq_info *info);
|
|
|
|
extern int s3c_plltab_register(struct cpufreq_frequency_table *plls,
|
|
unsigned int plls_no);
|
|
|
|
/* exports and utilities for debugfs */
|
|
extern struct s3c_cpufreq_config *s3c_cpufreq_getconfig(void);
|
|
extern struct s3c_iotimings *s3c_cpufreq_getiotimings(void);
|
|
|
|
#ifdef CONFIG_ARM_S3C24XX_CPUFREQ_DEBUGFS
|
|
#define s3c_cpufreq_debugfs_call(x) x
|
|
#else
|
|
#define s3c_cpufreq_debugfs_call(x) NULL
|
|
#endif
|
|
|
|
/* Useful utility functions. */
|
|
|
|
extern struct clk *s3c_cpufreq_clk_get(struct device *, const char *);
|
|
|
|
/* S3C2410 and compatible exported functions */
|
|
|
|
extern void s3c2410_cpufreq_setrefresh(struct s3c_cpufreq_config *cfg);
|
|
extern void s3c2410_set_fvco(struct s3c_cpufreq_config *cfg);
|
|
|
|
#ifdef CONFIG_S3C2410_IOTIMING
|
|
extern void s3c2410_iotiming_debugfs(struct seq_file *seq,
|
|
struct s3c_cpufreq_config *cfg,
|
|
union s3c_iobank *iob);
|
|
|
|
extern int s3c2410_iotiming_calc(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *iot);
|
|
|
|
extern int s3c2410_iotiming_get(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *timings);
|
|
|
|
extern void s3c2410_iotiming_set(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *iot);
|
|
#else
|
|
#define s3c2410_iotiming_debugfs NULL
|
|
#define s3c2410_iotiming_calc NULL
|
|
#define s3c2410_iotiming_get NULL
|
|
#define s3c2410_iotiming_set NULL
|
|
#endif /* CONFIG_S3C2410_IOTIMING */
|
|
|
|
/* S3C2412 compatible routines */
|
|
|
|
#ifdef CONFIG_S3C2412_IOTIMING
|
|
extern void s3c2412_iotiming_debugfs(struct seq_file *seq,
|
|
struct s3c_cpufreq_config *cfg,
|
|
union s3c_iobank *iob);
|
|
|
|
extern int s3c2412_iotiming_get(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *timings);
|
|
|
|
extern int s3c2412_iotiming_calc(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *iot);
|
|
|
|
extern void s3c2412_iotiming_set(struct s3c_cpufreq_config *cfg,
|
|
struct s3c_iotimings *iot);
|
|
#else
|
|
#define s3c2412_iotiming_debugfs NULL
|
|
#define s3c2412_iotiming_calc NULL
|
|
#define s3c2412_iotiming_get NULL
|
|
#define s3c2412_iotiming_set NULL
|
|
#endif /* CONFIG_S3C2412_IOTIMING */
|
|
|
|
#ifdef CONFIG_ARM_S3C24XX_CPUFREQ_DEBUG
|
|
#define s3c_freq_dbg(x...) printk(KERN_INFO x)
|
|
#else
|
|
#define s3c_freq_dbg(x...) do { if (0) printk(x); } while (0)
|
|
#endif /* CONFIG_ARM_S3C24XX_CPUFREQ_DEBUG */
|
|
|
|
#ifdef CONFIG_ARM_S3C24XX_CPUFREQ_IODEBUG
|
|
#define s3c_freq_iodbg(x...) printk(KERN_INFO x)
|
|
#else
|
|
#define s3c_freq_iodbg(x...) do { if (0) printk(x); } while (0)
|
|
#endif /* CONFIG_ARM_S3C24XX_CPUFREQ_IODEBUG */
|
|
|
|
static inline int s3c_cpufreq_addfreq(struct cpufreq_frequency_table *table,
|
|
int index, size_t table_size,
|
|
unsigned int freq)
|
|
{
|
|
if (index < 0)
|
|
return index;
|
|
|
|
if (table) {
|
|
if (index >= table_size)
|
|
return -ENOMEM;
|
|
|
|
s3c_freq_dbg("%s: { %d = %u kHz }\n",
|
|
__func__, index, freq);
|
|
|
|
table[index].driver_data = index;
|
|
table[index].frequency = freq;
|
|
}
|
|
|
|
return index + 1;
|
|
}
|