Searched refs:powernow_table (Results 1 - 3 of 3) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/cpu/cpufreq/
H A Dpowernow-k7.c93 static struct cpufreq_frequency_table *powernow_table; variable in typeref:struct:cpufreq_frequency_table
173 powernow_table = kzalloc((sizeof(struct cpufreq_frequency_table) * (number_scales + 1)), GFP_KERNEL);
174 if (!powernow_table)
180 powernow_table[j].frequency = (fsb * fid_codes[fid]) / 10;
181 powernow_table[j].index = fid; /* lower 8 bits */
183 speed = powernow_table[j].frequency;
188 powernow_table[j].frequency = CPUFREQ_ENTRY_INVALID;
198 powernow_table[j].index |= (vid << 8); /* upper 8 bits */
206 powernow_table[number_scales].frequency = CPUFREQ_TABLE_END;
207 powernow_table[number_scale
[all...]
H A Dpowernow-k8.c600 if (data->powernow_table[j].frequency != CPUFREQ_ENTRY_INVALID) {
602 printk(KERN_INFO PFX " %d : fid 0x%x gid 0x%x (%d MHz)\n", j, (data->powernow_table[j].index & 0xff00) >> 8,
603 (data->powernow_table[j].index & 0xff0000) >> 16,
604 data->powernow_table[j].frequency/1000);
607 data->powernow_table[j].index & 0xff,
608 data->powernow_table[j].frequency/1000,
609 data->powernow_table[j].index >> 8);
619 struct cpufreq_frequency_table *powernow_table; local
642 powernow_table = kmalloc((sizeof(struct cpufreq_frequency_table)
644 if (!powernow_table) {
775 struct cpufreq_frequency_table *powernow_table; local
839 fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) argument
881 fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table) argument
[all...]
H A Dpowernow-k8.h27 /* the powernow_table includes all frequency and vid/fid pairings:
30 struct cpufreq_frequency_table *powernow_table; member in struct:powernow_k8_data
219 static int fill_powernow_table_pstate(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table);
220 static int fill_powernow_table_fidvid(struct powernow_k8_data *data, struct cpufreq_frequency_table *powernow_table);

Completed in 43 milliseconds