Atom N450 cpufreq problem

Greetings, travelers.
I have bought a new netbook recently and i am trying to make cpufreq work correctly. but! i cant set the core freq highter than 1,33GHz which isnt right. I have noticed that
[void@hp ~]$ cpufreq-info
cpufrequtils 007: cpufreq-info (C) Dominik Brodowski 2004-2009
Report errors and bugs to [email protected], please.
analyzing CPU 0:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0 1
CPUs which need to have their frequency coordinated by software: 0
maximum transition latency: 10.0 us.
hardware limits: 1000 MHz - 1.67 GHz
available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
available cpufreq governors: powersave, ondemand, performance
current policy: frequency should be within 1000 MHz and 1.33 GHz.
The governor "performance" may decide which speed to use
within this range.
current CPU frequency is 1.33 GHz.
analyzing CPU 1:
driver: acpi-cpufreq
CPUs which run at the same hardware frequency: 0 1
CPUs which need to have their frequency coordinated by software: 1
maximum transition latency: 10.0 us.
hardware limits: 1000 MHz - 1.67 GHz
available frequency steps: 1.67 GHz, 1.33 GHz, 1000 MHz
available cpufreq governors: powersave, ondemand, performance
current policy: frequency should be within 1000 MHz and 1.33 GHz.
The governor "performance" may decide which speed to use
within this range.
current CPU frequency is 1.33 GHz.
current policy enables only 1.33 GHz and and dont know how to change this.
Any ideas?
cpufreq-set -f 1.6GHz does not return any error, but it only sets the clock speed to 1.33GHz
Last edited by Void_Walker (2010-06-25 14:03:48)

Update: WORKAROUND: add "processor.ignore_ppc=1" to your kernel boot line, like this:
# (0) Arch Linux
title Arch Linux
root (hd0,0)
kernel /vmlinuz26 root=/dev/sda3 processor.ignore_ppc=1 ro
initrd /kernel26.img
and change the value in
/sys/module/processor/parameters/ignore_ppc
from 0 to 1
but still, this isn't a solution (yes, it does work, but... its only a workaround) hopefully, this will be solved in future, until then, you may stick with this...
Gusar wrote:That number is not ugly, it's 1333000Hz or 1.33GHz. Of course it should be 1666000 instead, but I don't know how to help you get to that. Have you tried using the userspace governor and setting the freq manually?
Yes, I have tried to set the freq manualy. It was possible to change the freq in range of 1ghz to 1.33ghz, but not highter.
dieghen89 wrote:Try put max_freq="1.67GHz"...In my n280 i solved so....
I already have done this long ago... my problem was that the bios_limit is set to 1.33ghz, whitch isn't the real maximum of my processor.
Last edited by Void_Walker (2010-06-27 20:19:54)

Similar Messages

  • Intel Atom Speedstep/cpufreq

    Hi!
    Can anyone tell me if Speedstepping should work with Arch and Intel Atom? I've got an Intel Atom based system but I've had no luck with cpufreq.
    Modprobing the modules give me errors like this
    FATAL: Error inserting acpi_cpufreq (/lib/modules/2.6.28-ARCH/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko): No such device
    I've been trying to follow how to's like this http://wiki.archlinux.org/index.php/Cpufreq
    Thanks in advance!

    p4-clockmod doesn't actually do freq scaling, it does what the module says - modulation. Which is a whole different thing that doesn't actually bring any benefits. I've had a nice link where all this was explained, but I can't seem to find it now...
    Edit: Found it - http://www.codemonkey.org.uk/2009/01/18 … 4clockmod/
    Last edited by Gusar (2010-04-22 20:41:17)

  • Upgrade hp mini 210-1014TU,processor intel atom N450,ram 2gb ddr 2

    Can I upgrade my hp mini 210-1014TU processor?

    Fahmisahaka wrote:
    Can I upgrade my hp mini 210-1014TU processor?
    Hi,
    The following link shows its specs:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01968363
    You can't upgarde CPU unless changing motherboard (= buying new machine). You can't upgrade RAM to 2Gb because it only supports 1Gb of RAM, max.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Atomic and synch problems

    Sorry, probably me, but I thought this bit of code would count to 5,000,000 for each of the atomic, synch and own variables and go wrong for the other. However, only own works. Why is that....
    package bitsandbobs;
    import java.util.concurrent.atomic.AtomicInteger;
    * <p>Title: New Java</p>
    * <p>Description: Just Playing with new java features</p>
    * <p>Copyright: Copyright (c) 2005</p>
    * <p>Company: Solution Foundry Ltd</p>
    * @author Richard Prout
    * @version 1.0
    public class AtomicVars extends Thread {
    static AtomicInteger ai = new AtomicInteger(0);
    static Long nonai = new Long(0);
    static long synchInt;
    long ownInt = 0;
    public AtomicVars(String threadName) {
    super(threadName);
    public synchronized void incSynch() {
    synchInt += 5;
    public void run() {
    for (int i = 0; i < 1000000; i++) {
    ai.addAndGet(5);
    nonai += 5;
    incSynch();
    ownInt += 5;
    System.out.println(getName() + " Atomic " + ai.get());
    System.out.println(getName() + " Non " + nonai);
    System.out.println(getName() + " Synch " + synchInt);
    System.out.println(getName() + " OwnInt " + ownInt);
    public static void main(String[] Args) {
    AtomicVars first = new AtomicVars("first");
    AtomicVars second = new AtomicVars("second");
    AtomicVars third = new AtomicVars("third");
    AtomicVars fourth = new AtomicVars("fourth");
    AtomicVars fifth = new AtomicVars("fifth");
    AtomicVars sixth = new AtomicVars("sixth");
    try {
    first.start();
    sleep((long) Math.random() * 300);
    second.start();
    third.start();
    sleep((long) Math.random() * 300);
    fourth.start();
    sleep((long) Math.random() * 300);
    fifth.start();
    sleep((long) Math.random() * 300);
    sixth.start();
    } catch (InterruptedException ex) {
    System.out.println("Exception");
    }

    Well this is weird, and a likely candidate for the Journal of Irreproducable Results. I deleted the videos from Vimeo last night just before I posted to this forum. I then shut down the computer for the night. Booted up this morning, and the H.264 export played fine in QuickTime, and in VLC. So I uploaded it again to Vimeo here: https://vimeo.com/40655208 (password protected, by the way, intended for my client's approval. PW = DIYEFT) and it now seems to play fine.
    To say I'm puzzled doesn't begin to describe it. If my internet connection had been slow last night (Time Warner cable, not the quickest out there) that might help explain the sutttering on Vimeo, but it wouldn't explain the similar stuttering in QuickTime.

  • How Web Dynpro supports RSS (ATOM)?

    Let's image to generate our feed (RSS/ATOM) via java classes or xslt; now how is it possibile to expose it to the end-user?
    From the development point of view it is similar to expose other Web Dynpro UI and it would be nice to use the same "prospective" and project also for this kind of comunication method...

    Valery, thanks for the replay.
    I agree with you: "nothing of special about RSS/ATOM and
    No problem also building the XML object".
    Let me try again:
    - user contacts the url of the WD application
    - the system should response just with the RSS xml data and not with UI objects (tableView, textEdit, ...)
    But the WD does not allow you "to send out raw XML" even "send out raw HTML".
    It allows "only" to build nice UI via objects it knows.
    When you say "construct contex value nodes" do you mean that you are able to replay with the raw XML data?
    Are you really able to response to a browser as the following url https://forums.sdn.sap.com/rss/rssmessages.jsp?threadID=75910
    does? (It is the feed of this post)
    Sergio

  • Re: How I would make the Toshiba AC100 successful

    Hi All,
    I post my ideas for improvements here, maybe someone from Toshiba reads this.
    The original blog post is here:
    http://soltesza.wordpress.com/2011/05/09/how-i-would-make-the-toshiba-ac100-successful/
    Please feel free to contribute here or at the blog post.
    The AC100 is an early attempt from Toshiba to create an ARM based netbook (a smartbook) with Nvidia's successful Tegra2 chipset.
    Although, the AC100 looks like proper hardware design, it became only
    mildly successful. Some of the reasons may have to do with the primary
    operating system, Android ([see my earlier article about this|http://soltesza.wordpress.com/2010/06/27/toshiba-a100-smartbook-with-android-but-why/]) but even more can be attributed to the design decisions Toshiba made.
    Since these machines are now available in my home country (Hungary)
    at quite attractive price points (~$250 USD, some people seem to be
    trying to get rid of it soon after purchase) I can't help bumping into
    it all the time. Sinc[View post|http://soltesza.wordpress.com/2011/05/09/2011/05/09/how-i-would-make-the-toshiba-ac100-successful/]e
    I am a gadget fan, I always have my hand trembling seeing those prices
    and I need to cool myself down before doing some impulse-buy I regret
    later.
    What could make me click on the "Buy" button?
    *More memory*
    First of all, 1-2GB of RAM instead of the measly 512MB the AC100
    hosts. Why the heck tried Toshiba sell a netbook with 512MB of RAM when
    ALL of the Atom N450 netbooks seemed to come with 2 GB at that time?
    This amount of RAM would allow to slap Ubuntu onto the machine and not
    worry about running out of memory when loading up OpenOffice. Ubuntu has
    been demonstrated on the AC100 and even looks snappy. (see this [site dedicated to Ubuntu on the AC100|http://tosh-ac100.wetpaint.com/]). Toshiba could easily put 2GB of RAM into the machine without major cost-increase.
    *Desktop OS and/or Android*
    Putting 1-2GB of RAM into the AC100 would open the gate for using a
    proper, netbook-oriented desktop OS which can take advantage of the
    form-factor. They should use Ubuntu, since that could be fixed up on
    this hardware in no time (especially if they purchase some consultancy
    from Canonical).
    I don't think that Android needs to stay on the machine but if
    Toshiba still thinks it is such a good idea for any user-group, they
    could make the AC100 dual-boot, or even better, run both OSes in
    parallel (2GB of RAM would make this absolutely possible). Android would
    be the light-and-easy OS on the device but the user could any time
    switch to a full Ubuntu desktop with an Android launcher icon and start
    using OpenOffice or other decent desktop software. The
    paravirtualization developed by B-labs would be an [instant solution |http://armdevices.net/2011/04/04/android-virtualization-on-ti-omap4-processors-dual-core-cortex-a9/]for this problem and would future proof the machine for a possible Windows8 scenario later.
    *More battery*
    The 8 hour runtime of the AC100 is decent enough but more
    battery-time is always welcome. The enclosure has a LOT of free/empty
    space under the keyboard due to the ultra-compact nature of Tegra2 and
    its supporting circuitry. Toshiba should again take advantage of the
    form-factor and add one or more extra battery docking bays under the
    keyboard which could extend the runtime to 16-24 hours. (Admittedly,
    they would make the unit weight much more but since these batteries
    would be optional, this decision would be up to the user. A 24-hour
    runtime with a 3-battery arrangement would make the AC100 extremely
    appealing for a large-set of users. It would be acceptable that the
    batteries are charged in series (so the recharge process is lengthier)
    so that Toshiba doesn't have to switch to a more expensive power supply.
    (Although the power supply issue is probably not a serious cost
    factor).
    *What else*
    Of course, there would be a lot of things to be improved (more USB
    ports, higher-resolution display...etc) but I tried to draw up things
    which require smaller redesign so that an improved version could be
    implemented faster.
    I believe the AC100 line could be made really successful and Toshiba should take steps to make this happen.

    hi there,
    I'm new here and I need support from someone...
    I buy notebook toshiba ac100 3 weeks before and I suffer major problem...
    something happened with my screen , I press the power button and notebook is running /I can tell from turning on play-multimedia button for music and it plays music/ but the screen is not running !
    I try many many things, like only on A/C , only on battery , pushing button for switch between screen and ext.monitor , but unfortunately - the screen was still black !
    so I connect to flat tv with HDMI cable, and there you go - i have the screen ot the TV , but only there !
    my question is this is problem with the screen or something I do wrong ?!
    thank you in advance.
    regards.

  • Why does Firefox work so poorly with Twitter compared to Opera?

    When typing in the "What's Happening?" field on Twitter, my Netbook (Intel Atom n450) cpu goes straight up to max frequency and heavy utilization and stays pegged there until, apparently, the whole SoC (System on Chip) crashes and screen flashes white. Also there is heavy lag as I enter characters faster than they get displayed. I installed Opera web-browser on my Netbook and typing on Twitter is just like typing in Notepad with Opera. I'm guessing that something about the way that Firefox processes the javascript of Twitter in regard to character counting/scanning etc. is causing unnecessarily extreme cpu load.
    == URL of affected sites ==
    http://twitter.com/

    It's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and themes and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.
    If the problem does not disappear when all add-ons are disabled, please tell me, so we can work from there. Please have no fear of following my instructions to the line, as all can be easily undone.

  • Arch logo not appearing when booting

    Hi guys I know this is probably for most of you not a problem but I like the logos and want them to have at boot up
    So here is my situation:
    I have a Samsung N150 netbook with an Intel Atom N450 Core, a GMA3150 Accelerator and a display that supports a resolution up to 1024x600 (although it is possible under windows to put it on 1024x768 too but its not made for that and doesnt look good)
    I am using grub and I have read that you need to use the frambuffer to be able to see the logos (with the parameter vga=...). However this doesnt make the logos appear, here is the vga setting that I put in the kernel line: vga=789
    He also supports only a maximum solution of 800x600 when booting with grub (is there a way to make it with 1024x600?), after udev starts he sets the display resolution to 1024x600. still the logos are not there
    The netbook that I had before this one (acer aspire one) did show the logos and it had a very similar hardware (atom core, gma3xxx accelerator) so I think it should be possible with this one too..
    any idea what I can do?
    Last edited by Triver (2011-08-17 22:46:41)

    Long story:
    - some people complained that Arch doesn't ship vanilla packages but alters them unnecessarily https://bbs.archlinux.org/viewtopic.php?pid=940787
    mhertz wrote:Then, and imho even worse, xorg patched to show a different desktop background and the kernel's tux logo exchanged with an arch logo!
    https://bugs.archlinux.org/task/24513
    and a response https://bugs.archlinux.org/task/24654
    The xorg patch was removed too, as it wasn't needed anymore - http://projects.archlinux.org/svntogit/ … 5ec326df7c
    https://bugs.archlinux.org/task/24514
    Yes, it's the same logo. No, it's unlikely to be coming back.
    Last edited by karol (2011-08-17 23:02:31)

  • Opening raw images in Photoshop Elements 9

    When opening raw images in Photoshop Elements 9 (File -> Open or File -> Open As), the Adobe Camera Raw dialog do not open.
    Instead I get a window with a progress bar and the text "Reading Camera Raw Format".
    The image then opens in the Photoshop Elements editor.
    I have tested this with raw images both from Canon EOS 1000D and Samsung WB2000 cameras.
    I would appreciate any suggestions on how to solve this issue.
    I run Photoshop Elements on a HP netbook running Widows XP and with an Intel Atom N450 / 1.66 GHz processor, 2 GB ram and a screen resolution of 1024 x 600 pixels.

    Unfortunately you can't see the raw converter in PSE 9 on screens less than 800 px tall, which means not on netbooks. PSE will automatically convert it for you, but that dialog box and a few others, like the Advanced Downloader window, will not appear.

  • Can I install the latest version of FF on Windows 7 Starter

    Can I upgrade version 6.0.2 to the current version - 22 I believe, on a netbook running Win 7 starter? I have an Atom N450 processor @1.66 gHz and 2 MB RAM with about 40 GB left on my HD. Can I do the upgrade with that configuration? Will it be faster than the version I have now?
    Thanks!

    No issue - I just wanted to be sure I could do it before I even tried. Wondered if my system was going to be up to handling the newest FF. But no - no install issue - yet!

  • Online backup and the Redolog mechanism

    Hello,
    During a backup I understand that the redolog mechanism changes, so that when a block is changed for the first time after the backup commences, it's entire content is copied to the redolog files, rather than just the change vector.
    My question is, does this happen even when the oracle block size is the same as the operating system block size?
    My understanding is that the change in redolog mechanism is because a single oracle block can be made up multiple operating system blocks, so that within an oracle block a change can be done to a few blocks, then a read by the online backup, so that the oracle block read by the backup is inconsistent.
    But if the oracle block size was the same as the operating system block size, each change would be atomic, so the problem of having inconsistent oracle blocks would not arise. So the change in redolog mechanism would no longer be necessary. Does the redolog mechanism change anyway?
    Kind regards,
    Peter

    Hi Peter,
    I will try to make the issue more clear eventhough so much useful has been written and said in this thread !!
    During Online Backup the tablespaces enter the backup mode this has following effects:
    1) A checkpoint on TS level is triggered before the backup of this TS starts and DBWR writes all corresponding dirty blocks of this TS to data files.
    2) The SCN corresponding to TS Checkpoint remains Frozen in the headrers of all TS files until the end of backup mode.
    3) Every change in this TS is logged in the redolog on data block level instead of data record level ; not only the redo info for a modified record is written into the redolg but the whole 8 KB block containing this record ( immaterial whether OS block size is 8 KB or not). The reason for this granual logging is the possibility that
    CPIO or DD may copy an oracle block to the backup medium in smaller units than 8 KB while the block is being changed by DBWR which can lead to inconsistencies whithin such a block.
    Now When the backup later used for restoring the TS, all blocks written to the redo log during the backup mode overwrite therir "suspicious"versions saved directly in the backup of the data files.
    Hope this useful
    Regards
    Umesh

  • Building packages remotely / build server?

    Hello.
    I'm not sure whether this is the right sub forum to post to, so feel free to move my thread if it's in the wrong place.
    My situation: I've got a fairly weak Asus EEE netbook (with a Atom N450 inside). This is obviously not ideal for when you want to build bigger packages, such as the Linux kernel. First off, it's pretty slow. Second, I'd like to use the netbook for stuff besides building packages. Third, having a high load over a long time is probably not healthy.
    Now, I have a relatively powerful desktop computer. This machine can be on pretty much 24/7. So, here's my question: Is it possible to have makepkg build a package on a remote machine?
    I imagine I would setup some kind of daemon listening to incoming connections on the desktop computer, and on the netbook side I would just "makepkg -si --remote xxx.xxx.xxx.xxx" or something like that.
    The benefit would be that you can build a optimized package for an older machine you have utilizing a newer (and hopefully better) machine, thus decreasing compilation time immensely.
    Or maybe I could somehow get all the relevant flags etc. off of the netbook, make a Bash script on the desktop computer that setups the environment and executes makepkg? That would be fine by me. I'm guessing that's a slightly easier way to do it, as the flags are just some text strings.
    If I recall correctly, I was searching on this matter a couple of months ago, and I found some old project (on the Arch Wiki) that would do exactly this, but I can't find it again. It didn't really seem to work, so maybe it was removed because it was useless information.
    So yeah, this would be sort of like a "ordinary" build server, except that I don't need my own repository, and the flags wouldn't be safe/generic.

    What is running on that desktop computer?
    Can you connect via ssh and set up https://wiki.archlinux.org/index.php/De … ean_Chroot

  • Hardware requirements for JavaFx 2.1.1

    Hello there,
    I've built a JavaFx application (Rubiks Cube type game), it runs fine on:
    My desktop (Win7 64bit, has GTX560TI graphics card)
    My laptop (Win7 bit, has ATI5470 card)
    But not on netbook (Win7 Starter, Intel Atom N450), the 3D effect doesn't show, and the images just appear in the corner of screen.
    Is this because it has no graphics card, and uses cpu for graphics?
    Or is it something software related that netbook can't handle?
    Thanks for any advice, I'm just trying to make it clear for the various users using the product.

    Is this because it has no graphics card?likely
    Or is it something software related that netbook can't handle?unlikely
    I'm just trying to make it clear for the various users using the product.Check the Scene3D conditional feature and provide a graceful fallback scenario for users for which this flag returns false.
    For example, show an error info message or a 2D tic tac toe game instead.
    http://docs.oracle.com/javafx/2/api/javafx/application/ConditionalFeature.html#SCENE3D
    See the Graphics section of the JavaFX 2.1 System Requirements document for more info:
    http://docs.oracle.com/javafx/2/system_requirements_2-1/jfxpub-system_requirements_2-1.htm

  • Remote xml with user validation

    ok am trying to make a gmail new mail checker (its a hobby) so am gonna parse an atom file (https://mail.google.com/gmail/feed/atom) but the problem is how can java send the username and password to google before accessing the xml file

    got it, needs to be encoded hehe

  • Linux-one - kernel for acer aspire one

    i'm recently bought an acer aspire one d255e and found the linux-one kernel in the AUR. linux-one
    i would like to know what your comments, tips and improvements are.
    i'm not the maintainer of the package just an user. I will try to build this kernel this afternoon and post some comments.
    please feel free to comment if this kernel work in your acer aspire one and what modification you have done in the config to get your aao working.
    cheers
    edit: typo
    Last edited by warenoso (2011-08-15 23:06:43)

    I have a aao 532h with an Atom N450 processor and use the kernel-netbook package which also supports Atom N550 processors. It works 'out of the box' on my machine and the only thing I would think to check in the config for yours is support for your graphics which I believe is Intel GMA 3150.
    I haven't tried the linux-one package as it's for the first aao netbook that came out which didn't have bluetooth.

Maybe you are looking for

  • Message while creating a class method

    Hi all, I have created a class as local object. When i try to modify that class the following message is displayed. "You are not authorized to make changes (authorization object S_DEVELOP)"

  • Java mail with Dynamic attachment?

    Hi :-) How to send the mails with dynamically created attachements.. The attachments may be a Excel file created dynamically according to the user inputs on the webpage. Is there any way to send those attachments to the receipients with out storing t

  • Site Studio : Search Fragment

    Hi ! I am designing a small sample Web Site for a POC and I need to integrate search capabilities. I am using Content Server 11g and Site Studio Designer (not JDevloper / SSXA) I have added the Search Box Plain Fragment and the Search Result Plain fr

  • 10.10.3: firmware password not working anymore!

    dear all, since the great 10.10.3 my MBP 2015 doesn't recognize my firmware password anymore. What the ****?? I changed it lately, but, and I can't stress this enough: I HAVEN'T FORGOTTEN IT! I know exactly what I typed, I also know I put it in corre

  • Can't open my website outside of my web server

    I have installed lion server on my mini. I want to use it to host my website url. www.bigislanprivatechef.com after setting up web server I can type the url into any of my browsers and my site fires right up. I can go to statcounter and see my hits r