Slashdot Mirror


CEO of Centaur Discusses x86 Strategy and Linux

An anonymous reader writes "This fascinating interview with Glenn Henry, founder of VIA processor subsidiary Centaur Technology, discusses the founding of Centaur, its strategy and products, and why Linux is fundamental to his company's success. Additional topics covered include: how to produce an x86 clone with a few million dollars and a few dozen engineers; the embedded x86 market, and how it compares to the traditional ARM and MIPS based embedded market; why Centaur doesn't compete with AMD and Intel so much as enable x86 to reach new markets; how Linux is enabling greater hardware functionality; the urgent need for pervasive security -- and much more!"

135 comments

  1. Wondering by swordboy · · Score: 4, Interesting

    I've been wondering why some company like this doesn't create a "network appliance" specification for all of us to hack on. It would be nice if I could just go buy a Netgear router and roll my own Linux installation. I purchased a Toshiba Magnia SG10 some time ago when they were a couple hundred bucks during the end-of-life period. For a 566mhz Celeron with an honest-to-goodness hard drive and switch on the back, it was hard to go wrong. I immediately wiped the stock Linux OS and rolled FreeBSD on there.

    Wouldn't it be MORE profitable for companies like the aforementioned Netgear to do this? What am I not seeing? Centaur: help us out!

    --

    Life is the leading cause of death in America.
    1. Re:Wondering by Anonymous Coward · · Score: 3, Informative

      If you want that, get a Soekris box. I run a few of them and they're very nice.

    2. Re:Wondering by tji · · Score: 1

      I would also like the same thing..

      To some extent VIA does provide this. Their Mini-ITX and Nano-ITX motherboards are the core for a good network appliance. You just need to add a decent case, hard drive, etc. -- But, buying a good small case with power supply is harder than it should be. There are many options available to OEMs for large purchases, but the selection for hobbyists is relatively small.

      The available Mini-ITX and Nano-ITX cases are also fairly expensive relative to ATX cases. I guess VIA doesn't see a big enough market to justify an all-in-one mobo+case solution.

    3. Re:Wondering by Rogue+Leader · · Score: 1

      When reading the name Centaur Technolgy am I the only one who pictured an office full of half-men, half-horses? Nice shirts and ties on their human torsos, talking casually by the water cooler. All of them discussing how much they save on gas by not needing cars. I just wouldn't want to clean the bathroom; yikes.

      --

      worst sig ever. . .

  2. Is x86 the best chip to use by millahtime · · Score: 4, Interesting

    Is an x86 or clone really the best chip to take to markey this way? Linux will run on other processors and the x86 isnt' the best archicecture. There are processors that are more efficient, use less power and can run linux.

    Although, I'll admit some of those embedded boards that I have seen are pretty cool and easy to use.



    P.S. I know I can't spell. That's why I'm not an english teacher.

    1. Re:Is x86 the best chip to use by stratjakt · · Score: 5, Informative

      Whether it's the best "textbook" architecture or not, it's entrenched itself in the computer world so deeply that x86 will be around forever.

      It works, engineers and coders are familiar with it.. The embedded world is still largely about ASM routines and tight little loops that dont leave the cache, etc, etc.. You can write and test your fancy-shamcy hand-assembled routine at your leisure on your desktop computer.... There are plenty of upsides, and the only downside is the "other stuff looks better on paper" argument.

      It's a newcomer to the embedded world, but will no doubt take a strong hold.

      --
      I don't need no instructions to know how to rock!!!!
    2. Re:Is x86 the best chip to use by squiggleslash · · Score: 3, Interesting
      It's a nice idea, but there are still a hell of a lot of binary-only packages for Linux (and GNU/Linux) varying from display device drivers to video decoders (such as Real.) Unless your chip is likely to capture a significant portion of the market, it's not terribly likely that many of those binary packages will be ported.

      On top of which, as long as it runs ix86, platforms with the chip will not be limited to Linux.

      --
      You are not alone. This is not normal. None of this is normal.
    3. Re:Is x86 the best chip to use by iguana · · Score: 5, Interesting

      As an embedded Linux developer moving from x86 to ARM, there are good reasons to stick with embedded x86.

      - My Linux development PC runs x86 so stuff compiles/runs on my development machine will tftp over to my embedded board and run immediately.

      - The GNU x86 toolchain is WAY easier to use than the cross GCC tools. All GNU (Linux kernel and gcc especially) projects target x86 first and everyone plays catchup. Bugs are found/fixed in x86 first. Features work on x86 first.

      Reasons to move from x86 to ARM.

      - ARM is designed as an embedded CPU and x86 is designed as a desktop CPU. So the ARM has a very simple memory map, you don't have to worry about working around 15 year old cruft (why the foo doesn't a modern x86 boot straight to protected mode?).

      - It's hard to find an x86, even one ostensibly designed for the embedded market, without the "kitchen sink" problem. Our product with >500 parts with an SiS x86 dropped to 300 with an Atmel AT91 ARM. Most of the passive parts on the SiS board were to turn OFF crap we didn't need (IDE controller, SD controller, video controller and so forth).

      - ARM is cheaper. ARM is smaller. ARM uses less power. ARM is cooler (temperature). ARM is cooler (it's a very nifty chip design).

      Just my opinions, lightly flavored with experience.

    4. Re:Is x86 the best chip to use by chrysrobyn · · Score: 3, Insightful
      Is an x86 or clone really the best chip to take to markey this way? Linux will run on other processors and the x86 isnt' the best archicecture. There are processors that are more efficient, use less power and can run linux

      Give PPC a try. I love my LinuxPPC machines, they're wonderful. I honestly fell in love with the PPC in college, first in real world x86 emulation (VirtualPC) and then in Computer Architecture and Computer Hardware Design. It's a lovely architecture, and you can see its low power uses in the iBook. I've read that the 750 in the iBook used less power than the southbridge, but I don't have references to back that up. Suffice it to say, the PPCs have been traditionally pretty low power, and have pretty good desktop acceptance as far as non-x86 processors go on desktop machines.

      After you get through the base packages of a useful distro, like Debian or a multitude of others, you'll start to find x86 only packages-- retail packages usually don't even acknowledge that Linux runs on non-x86 hardware! Is x86 compatible really the architecture to target for Linux acceptance? If I didn't love PPC and have a source of cheap old Macs, I'd rather be running a VIA / Cyrix derivative because of how cool they run. Since the Pentium class, x86 hasn't been about the native instruction set, it's been about the state machine that re-orders, re-names and actually issues native instructions on a pretty nice, flexible RISC inside anyway. So, Centaur's problem is basically updating their RISC core and keeping their x86 runtime emulator tuned. That way you don't have to bend anybody's mindset to make packages for some off the wall architecture, or beat another architecture at their own game.

    5. Re:Is x86 the best chip to use by iguana · · Score: 4, Interesting
      The embedded world is still largely about ASM routines and tight little loops that dont leave the cache, etc, etc.. You can write and test your fancy-shamcy hand-assembled routine at your leisure on your desktop computer....

      Not really. There isn't much assembly necessary on a modern embedded platform. Even the little 4- and 8-bit processors have specialized C compilers available. Assembly is necessary for startup but that's about it; then we just jump to main(). I think Windows game programmers write more assembly than most embedded systems folks do.

      Embedded systems development is just like any other development. How can I get the best product out as quickly as I can? ASM doesn't get me there quickly enough.

      That's why using embedded x86 can be a good fit. It may not be the best technical solution, but we'll get to market quickly because the tools and available leveragable source is so good.

    6. Re:Is x86 the best chip to use by Short+Circuit · · Score: 1

      If you run Linux, I'd wager that the source code was available for almost all of the software on your machine. Meaning it can be compiled with optimizations for your CPU.

      With Via's CPUs, some functionality, like encryption and random number generation, are supported by the kernel, which then makes the functionality available to userland in ways that don't require the software to explicitly support Via's CPU.

    7. Re:Is x86 the best chip to use by squiggleslash · · Score: 1

      Almost all but not all - that was my point. For two examples, look at the binary drivers for nVidia cards, and for programs that play RealPlayer and Windows AVI/ASF/WM* files (yes, source is available to play a subset of the latter, but it's notable MPlayer et al have to resort to WINE-based hacks to play some major exceptions)

      --
      You are not alone. This is not normal. None of this is normal.
    8. Re:Is x86 the best chip to use by AnwerB · · Score: 3, Informative

      Actually, the architecture I would recommend (and the one I use) for really small footprints is the ETRAX 100MCM from Axis.

      The new version (it's not on the web yet, but they are shipping in limited quantities) includes on chip: 4 Mbyte Flash, 16 Mbyte SDRAM, an Ethernet transceiver, Reset circuitry, and dozens of passives (resistors and capacitors), and all the usual: 4 Serial UARTS, a parallel port, SPI bus, etc.

      So if you wanted to build a credit-card sized Linux machine with Ethernet, BOA webserver, SSH, FTP, vi, sqlite, LUA scripting language, etc., you could (and you would still have at least 1.5 MB left over).

      This is what I use for my embedded designs, and it's astonishingly easy using the cross-compiling toolchain (basically, just gcc and a change in the makefile for target) that they provide. They also have a mailing list for questions if you don't want to call.

      Oh, and their architecture is now supported in the main fork of the 2.6 kernel.

    9. Re:Is x86 the best chip to use by Kazymyr · · Score: 3, Insightful

      Thumbs up for ARM (pun not intended). Plus you can take a synthetic ARM core and dump it to silicon together with the peripherals of your choice, and get a system-on-chip with very little effort. Try to do that with a x86 - not!

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
    10. Re:Is x86 the best chip to use by Anonymous Coward · · Score: 5, Interesting

      I honestly fell in love with the PPC in college .. It's a lovely architecture

      PPC is nicer than X86 but it's hardly a "lovely architecture." In fact, it's one of the uglier RISC designs.

      - Backwards bit numbering scheme. The MSB is referred to as bit 0. Normally, it's just a matter of convention and makes no difference but there is some inconsistency in the ISA about this. For example, shift counts are stored in the 5 LSBs but indirect segment register indices appear in the upper 5 bits (probably because of the MSB convention.)

      - Some really complex instructions which increase processor complexity. Rotate-with-masked-insertion? That's not RISC. IBM's POWER chips actually need to break down some of the instructions into smaller ops, similar to X86.

      - Flags. It's nice that most flag computations are optional and are only done if explicitly requested, but flags don't belong in a RISC architecture. The way PPC implements them is even more complicated than on most CISC machines: A flag register with 8 4-bit CC fields and additional flags in a separate XER register! (??)

      - A bizarre MMU. The paging scheme isn't as efficient as other architectures, even including X86. Apparently this is IBM legacy cruft from a previous architecture (possibly S360, can't remember.)

      As far as RISC architectures go, Alpha was probably the best by far, and the actual implementation was great starting with the EV6.

    11. Re:Is x86 the best chip to use by iguana · · Score: 1

      We investigated the Etrax for our current project but it didn't have USB host. Otherwise we would have jumped at it because of the mature tools support.

    12. Re:Is x86 the best chip to use by Jeff+DeMaagd · · Score: 1

      I think it just depends on what the designers want and what the suppliers can deliver.

      If VIA makes a system-on-a-chip before any ARM fab can, and still deliver acceptable performance (in terms of speed, power consumption, IO, etc) then I'd say VIA would clearly win a round in terms of market share.

      I think it's good that VIA is trying to be flexible and make powerful enough chips to do anything an embedded designer or a low-end computer house needs.

    13. Re:Is x86 the best chip to use by Anonymous Coward · · Score: 0

      Bah. MIPS was the best by far. The main design criteria seemed to be RISC cleanness and orthogonality.

    14. Re:Is x86 the best chip to use by Anonymous Coward · · Score: 0

      MIPS was the best by far. The main design criteria seemed to be RISC cleanness and orthogonality.

      Need I point out branch delay slots and the special accumulator registers for multiplication (HI/LO, I think)?

    15. Re:Is x86 the best chip to use by Anonymous Coward · · Score: 0

      > I've read that the 750 in the iBook used less power than the southbridge, but I don't have references to back that up.

      The 750fx consumes about 5.4 Watt @ 800mhz. Which is nice, but the Intel Mobile P3 ULV can go up to 933 mhz on 4 Watt.

    16. Re:Is x86 the best chip to use by RAMMS+EIN · · Score: 1

      ``It's a nice idea, but there are still a hell of a lot of binary-only packages for Linux (and GNU/Linux) varying from display device drivers to video decoders (such as Real.)''

      However, for embedded systems, you will likely not need or even want any of these.

      ``On top of which, as long as it runs ix86, platforms with the chip will not be limited to Linux.''

      I don't really see what you mean...you can also usually run NetBSD. If you mean: you can't run Windows, why, yes, there are loads of platforms that Windows doesn't run on. They can still be good.

      --
      Please correct me if I got my facts wrong.
    17. Re:Is x86 the best chip to use by chrysrobyn · · Score: 3, Insightful

      This discussion is perhaps more suited to ArsTechnica, as the issue at hand is whether or not x86 is the best instruction set for a low power budget chip maker to pursue. I hope you don't hold that Alpha would be a more suitable instruction set for that -- I don't even want to think of what packages aren't available for Alpha, let alone ask a vendor for a program ported to my "Alpha-Compatible". Academically speaking, however, I will reply to your PowerPC attacks. Regretfully, all my college textbooks are 300 miles away, and I have not looked through my senior textbooks in 5 years, so my rebuttal cannot cite specific Alpha shortfalls beyond anecdotal recollection.

      PPC is nicer than X86 but it's hardly a "lovely architecture." In fact, it's one of the uglier RISC designs.

      4 precise detractors against the PPC ommitted, I concede that these are 4 of very many

      As far as RISC architectures go, Alpha was probably the best by far, and the actual implementation was great starting with the EV6.

      The Alpha processor team spent years learning that many of the architecturally correct ideals they had held needed to be thrown out when it came to the real world. According to Torvalds, "And all the RISC stuff that tried to avoid it was just a BIG WASTE OF TIME. Because the _only_ thing the RISC approach ended up showing was that eventually you have to do the hard stuff anyway, so you might as well design for doing it in the first place."
      Reference

      Make no mistake, I make no claims about the Alpha deserving the fate that we all foresaw when DEC made the deal with the Devil. Alpha had its share of problems (remember the quick race to 500MHz, then the hard stop for a long time while they straightened out their unbuffered cross chip clock signal?). The RISC/CISC debate ended long ago when Intel effectively merged them. Since then, the two different schools have borrowed from each other so much that we expect chips to have some cruft to reflect their original intents. For this reason, we'll see all Itanium derivatives reflecting that they were made for pre-defined behavior where a compiler can make predictions of the instruction ordering, and likely this will continue to be in intensely predictable math operations. At this time, anyone who insists that modern PPC, x86, Alpha or Sparc chips are exclusively RISC or CISC hasn't taken the time to realize that there is a very blurry line between the RISC and CISC lately. Many have argued that this line is effectively erased and that the definitions have only had meaning in college courses for the past decade.

      The Alpha may be your ultimately pure holy processor, but I will continue to find PPC to be a great balance between theory and real world needs and heritage. If nothing else, x86 has taught us that we can have incredibly high performance architectures based on 1970s vintage processors like the 4004.

    18. Re:Is x86 the best chip to use by Anonymous Coward · · Score: 0
      why the foo doesn't a modern x86 boot straight to protected mode?

      National Semiconductor NS486SXF did this, but I don't know if this chip is still available.

      They made the chip a lot smaller by removing all 16-bit support (and the MMU), then made it big again by adding on-chip peripherals.

  3. I wonder by foidulus · · Score: 4, Interesting

    if they could take this technology and turn it into a "portable pc gaming console" of sorts(of similiar size and shape to the gba) In the article it states that they can run at 533 MHz fanless with a worst case power consumption of 2.5W. Wouldn't it be neat to create a gaming console(kind of like the phantom pc gaming console, only portable) for this with flash cards being the "cartridge"
    Though licensing for the abandon-ware would be a pain. As would trying to standardize the input across a large number of games. But still, it would be friggin' cool to play leisure suit larry while you are bored in class!

    1. Re:I wonder by Ninwa · · Score: 1

      I'm not sure that you're going to be able to play anything too fancy on a 533 mhz, but who needs anything more than tetris, anyway? :)

    2. Re:I wonder by gl4ss · · Score: 1

      well..

      there was such a device proto linked from slashdot couple of months back.

      it looked like crap.

      --
      world was created 5 seconds before this post as it is.
    3. Re:I wonder by foidulus · · Score: 3, Interesting

      Yeah, but with the small screen you are limited to on a portable, do you really want anything fancy? I'm not sure I could play unreal tournament on a small screen. There are a ton of old games that you cannot find anymore(Leisure Suit Larry, a whole load of freeware games that came on this cd I bought 10 years ago) that were a lot of fun, but not very portable. Plus, a lot of times you had to mess around with "low memory" and whatnot just to get them to run. It would be nice to have a console that just "worked" with all those games.
      It's too bad that the companies who made those games either:
      a) don't exist anymore or
      b) don't want to open source the games even though there is almost no chance of the games bringing any more revenue.

    4. Re:I wonder by Enigma_Man · · Score: 2, Insightful

      You're either being _Very_ sarcastic, or have no idea about hardware.

      Look up the stats on the GBA, It runs at less than 20 MHz.

      -Jesse, unhappy at both hardware and software bloat, returning to the "good ole' days".

      --
      Nothing says "unprofessional job" like wrinkles in your duct tape.
    5. Re:I wonder by stratjakt · · Score: 1

      XBox only runs at 700 and can play more than tetris.

      Why do people think a game needs a 3.6ghz processor? It's all about the capabilities of the video chipset, and I've been reading a lot about ATI's forays into embedded video lately.

      --
      I don't need no instructions to know how to rock!!!!
    6. Re:I wonder by DreadCthulhu · · Score: 1

      Actually, Via is planning a portable handheld, with a 533mzh CPU, 128meg RAM, and a S3 Unichrome integrated video processor. It looks interesting, though I don't like the form factor. http://www.walibe.com/article171.html

    7. Re:I wonder by Kazymyr · · Score: 1

      The OP is probably one of those people who think they need 2.4 GHz just to write an email.

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
    8. Re:I wonder by CAIMLAS · · Score: 1

      Dude, with 533MHz, a decent graphics accelerator (relatively speaking), and a hack of MAME to get it to run on console under linux (or some other minimalist OS - BSD?) and you'd have an ideal portable game system.

      --
      ~/ssh slashdot.org ssh: connect to host slashdot.org port 22: too many beers
  4. Going after a different market by Da_Slayer · · Score: 4, Insightful

    I think it is a sound idea to go into the niche markets so to speak instead of just jumping into the fray with AMD/Intel. Everyone has had enough of the SSE2 vs 3dnow! extended vs the new kitchen sink it comes with. Those types of things have no real bearing on markets where companies are looking for solutions that are cheap, easy to deploy and know the company is designing the hardware for their problem. Not the company having to make their systems go on the vendors limited products.

    The more competition the better we the consumers are at getting the best products.

    --
    Push harder towards Open Media/Content
    1. Re:Going after a different market by Jeff+DeMaagd · · Score: 1

      The more competition the better we the consumers are at getting the best products.

      That depends. If competition becomes about who can cut the most corners and deliver the best price, the consumers sometimes lose there too. For example, consumer electronics used last decades but it seems that three years is about the average of what you can expect now, at best, the Chinese brands seem to be shorter yet.

    2. Re:Going after a different market by drinkypoo · · Score: 1

      This is actually a case of consumers "winning" because they have demonstrated that what they want is crappy, short-lived electronics at a low price. Hence consumers are getting precisely what they are asking for.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  5. Reminded me Transmeta by nomad63 · · Score: 2, Interesting

    Well, not exactly the same idea maybe but the story is the same as transmeta to me. One good upside to transmeta, they did not start with linux on mind.
    I am assuming their product did not make too much inroads into the industry otherwise I would have expected to hear about their products before this time and from 95 till 04, it is anawful long time to stay in hiatus.

    --

    __________
    The more I know people, the more I love animals
    1. Re:Reminded me Transmeta by binary+paladin · · Score: 1

      I remember their chips well. I actually read another interview with this guy years ago in Boot magazine (before they become Maximum PC). If you build "normal" PCs, then you may never have heard of them, but their products have always been available at Fry's.

      I've been considering building a box or two using their parts because they're fanless and, on my Linux boxes, I don't need a lot in the way of power because they're office, web, email, text editing boxes. Hell, their 1GHz part is good enough to do a lot with.

    2. Re:Reminded me Transmeta by Anonymous Coward · · Score: 1, Insightful

      The VIA processors have high market penetration because they ship with all of the low-cost VIA systems. You probably just don't recognize the name because you wouldn't associate it with a standalone processor product like you would with Intel or AMD.

      These guys certainly have an advantage over Transmeta in that they are tied to VIA and as such have chipset and motherboard support. Transmeta fell on it's face in part because they just did the processor and not the associated chipsets. But processors without motherboards are just inefficient paperweights.

      Michael

    3. Re:Reminded me Transmeta by mabhatter654 · · Score: 1
      Actually, Transmeta would be a great aquisition for VIA at some point, but I expect Intel would never allow that. Intel licenses enough stuff from them that they won't go under...but they won't be famous either...funny how that works.

      As for not having Linux on the mind that was a HUGE mistake on their part...Absolutely HUGE!! Their processor and the tech to make it x86 like is remarkable...on the fly emmulation...they could do anything! on demand....but they should have done their OWN at some point. They had this Linus guy working on their microcode... it's too bad he wasn't interested enough in Linux to do a native port to their processors...that would have rocked. But he's still technically on the payroll...so maybe...

    4. Re:Reminded me Transmeta by dfghjk · · Score: 1

      That and the fact that Transmeta's performance sucks so bad.

      Centaur's and Transmeta's history really have very little in common. In Centaur's case, Glenn set out to do an x86 processor because it would be fun. He wanted to do a simple design managable be a small group using ideas he had developed over a long period of time. The relatively poor performance was a consequence of Glenn believing that superscalar and floating point are works of the devil.

      Transmeta approached the problem with deep pockets and a technology that used software to translate the x86 instruction set. Their processors are an abomination and they have to buy into designs to sell any at all.

      AFAIK, Glenn and his core group are the original creators of the concept of using an instruction decoder to feed x86 to a RISC core. This dates back to their days at IBM.

  6. Open source designs? by Trigun · · Score: 3, Interesting

    The biggest problem with most hardware is that it is exotic. I'm not talking about PC's, and routers have become cheaper with micto-atx mobos with dual ethernet onboard. Laptops and PDA's are where there seem to be a lack of standards. There are no displays which can be plugged into your PC without special driver circuits. Why not create a LCD that has a standard interface that is compatible with PC hardware now?

    If you standardize the equipment, then you will drive prices down, and you won't be stuck throwing out a PDA that has a broken screen, or has eol'd. Just upgrade it.

    1. Re:Open source designs? by Allen+Zadr · · Score: 3, Informative
      If your willing to search, you never have to throw anything away, but that's also a lot of work. If I think my time is worth, even as little as $15 an hour, I couldn't repair / upgrade a Palm/WinCE device for less time than the money required to buy a new one (well, maybe a high-end WinCE device).

      It's throw-away lock-in. Same thing that happened to Televisions and VCRs 20 years ago. Standardizing the parts and interfaces won't help - the labor required is simply too time conssuming.

      Laptops are amazingly upgradable, and even those are less and less apt to be worth the time required. You mention driver circuits, but really - there are somewhere around 80 different driver circuits in current use for laptop displays. Yet, there are some 500 laptop models out there. And without the the driver circuit, the Liquid Crystal display is far cheaper than an integrated unit would be. So, I think that part of your argument is counter-productive. LCD + accompanying driver costs a lot more money, yes. However, the video card hardware can be configured to talk to most of the driver circuits (they are close to standarized at the interface level). Again - it's just a lot of work.

      When you don't have the 90% air that most PC chasis hold, you can't have big bulky large finger capable standard connectors between every part. Sometimes, you have to route your signals through flat cables or custom bundles.

      Really that pain-in-the-ass to price point is even hitting PCs. Once a computer is more than 3 years out of date, it actually becomes cheaper to simply buy a package deal. If you really liked your case, swap it, the case was free with the bundle - along with yet another floppy and CD-ROM. As prices drop, the three years will turn to 6 months. Or about the same period between major CPU/architecture performance boosts.

      --
      Kinetic stupidity has a new brand leader: Allen Zadr.
    2. Re:Open source designs? by Trigun · · Score: 3, Interesting

      Flat cables aren't that difficult to work with. Proprietary flat cables are a pain to work with.

      As an example, I have an IBM thinkpad 380Z with a broken lcd cable. Simple enough, right? Replace the cable. They're mostly standard connectors. Except the cable has a variety of surface mounts on it, and can only be replaced with a $125 replacement cable. If it didn't have the surface mounts, I could use an old IDE cable to replace it. If it had a driver circuit that wasn't built onto the mainboard, I'd have a vga display to play around with.

      All I've got now is a broken laptop.

    3. Re:Open source designs? by Allen+Zadr · · Score: 1
      Your's is a good supporting point (although you probably don't think so).

      You either buy the part, 05K2765, that's broken, or you repair or fabricate the part yourself.

      Using wire and a soldering iron ($12 if you don't own one).. Depending on the purpose of the surface mounts, I'll bet I could fabricate it in just less than the time to money ratio. The current part is probably repairable, with carefull enough hands, for even less.

      However, the "surface mounts" also speak to the - no room in such a small chassis - that I originally mentioned. The fact that they had to do surface mounts into a running cable, speaks volumes to how hard they needed to work within the alloted space.

      Bottom line, even here, is that the laptop, to you, is clearly not worth the cost to repair. If you're going to spend that kind of time/money, it may as well be on a new system. You've reached your device's just-replace-it point.

      --
      Kinetic stupidity has a new brand leader: Allen Zadr.
    4. Re:Open source designs? by Daengbo · · Score: 1

      I was shocked when I first moved to SE Asia. My motherboard blew, and I too it to check to make sure that the CPU hadn't blown, as well, to buy a new one from my friend who had a shop.

      They said they'd fix the MB, no problem. About US$13 for the whole deal.
      Never seen anyone fix a mainboard before that.

    5. Re:Open source designs? by alex_tibbles · · Score: 1

      Perhaps once the environmental cost of throwing away all that mercury-laden pcb and other toxic stuff is taken into account, throwing away pretty much whole computers won't be so economical....

  7. centar by millahtime · · Score: 3, Interesting

    Centaur is positioned to tap the largest market in the industry- the sub-$400 PC market. Right now Centaur is designing a processor that will run over 2 GHZ.

    A 2 GHz machine that is x86 compatible but will it have all those nifty other features that windows can use to speed it up? If not, it would be much slower than AMD and Intel.

    Although, the thought of being able to use a chip like that for some embedded app would be pretty neat and pretty powerful because you don't need all the extra stuff that windows uses.

    1. Re:centar by binary+paladin · · Score: 1

      They've also embraced the added instructions, like SSE3 and such in a big hurry. I don't know if you read the whole interview but I found the end, the part about the securtity/encryption features that are supported only in the free software world and NOT by Windows to be one of the coolest parts.

      I haven't read a comparison in some time, but if I remember these chips are fairly competetive for everyday use, but their floating point is kinda weak.

    2. Re:centar by Anonymous Coward · · Score: 0

      This pushes you up into the compute power needed to make an intel-based fanless tivo clone. You can kind of do it now but you need additional cards to do the encoding.

      Michael

    3. Re:centar by Anonymous Coward · · Score: 0

      their floating point is kinda weak.

      exactly 1/2 main clock speed to be precise, on my 533MHz Eden. They do have a full speed 3dnow unit which I consider a silly decision, because software support for it is almost non-existant, otherwise it requires a very good compiler.

    4. Re:centar by Anonymous Coward · · Score: 0

      M10K up have full speed fpus now.

      -- vranash

  8. Interesting trend by IWantMoreSpamPlease · · Score: 3, Insightful

    Every other day, it seems, someone is shouting about how their company is finding linux is crucial to their success/business plan/what have you.

    I wonder if it's a case of corporate "me too!" or if all the small firms were simply waiting for some large firm (IBM for example) to thumb their corporate nose at Microsoft, before they decided it was safe to do so.

    Don't get me wrong, I'm all for firms being able to decide who to attach their sail to, I was just wondering why it was taking until now...

    --
    So rise up, all ye lost ones, as one, we'll claw the clouds.
    1. Re:Interesting trend by Anonymous Coward · · Score: 1, Informative

      In the embedded (business/use)-case, the Centaur CEO is talking about, Linux is crucial, because it is cheaper. Windows adds a lot to the sale price. Linux doesn't, so it has a competitive advantage.

  9. April Fools? by AnwerB · · Score: 2, Insightful

    I don't know if anyone else noticed, but they apparantly started on April Fools Day:

    "We started officially on Apr. 1, 1995, the day the check came in the mail, an auspicious date."

    I don't know why, but I found that amusing...

    1. Re:April Fools? by Anonymous Coward · · Score: 0

      Didn't Apple also start on April Fools Day?

    2. Re:April Fools? by Anonymous Coward · · Score: 0

      Just itching for a +1 Funny aren't you? Well, guess what.. It's not all that funny. To get a useless +1 Funny you have to say something retarded after the intial quote.

      "We started officially on Apr. 1, 1995, the day the check came in the mail, an auspicious date."

      Heh, bet when he gets this pink slip i'm sending in the mail it won't be as auspicious....

      That is how you waste time on slashdot.

    3. Re:April Fools? by Anonymous Coward · · Score: 0

      "We started officially on Apr. 1, 1995, the day the check came in the mail, an auspicious date."

      Heh, bet when he gets this pink slip i'm sending in the mail it won't be as auspicious....


      Um, no, that would be -1 Gratuitous Bad Attitude.

  10. Out of skew by b0lt · · Score: 3, Interesting
    Additional topics covered include: how to produce an x86 clone with a few million dollars and a few dozen engineers;
    Didn't Intel CREATE the x86 with less than a million dollars and a few dozen engineers?
    --
    got sig?
    1. Re:Out of skew by randomErr · · Score: 1

      Um yeah but didn't Intel's chip run at less then 1 mhz and was power hog? This clone runs around 1 ghz and uses the same or less power then Intel's chip.

      --
      You say things that offend me and I can deal with it. Can you?
    2. Re:Out of skew by Kazymyr · · Score: 1

      I doubt that it's true, even if you refer to the original 8086 chip - Intel was probably already bigger than that by that time. And later on, they used many million and several dozen lawyers just to secure the "pentium" name. :)

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
    3. Re:Out of skew by /dev/trash · · Score: 1

      Yeah but Intel didn't need to reverse engineer anything.

    4. Re:Out of skew by Anonymous Coward · · Score: 0

      >> Additional topics covered include: how to produce an x86 clone with a few million dollars and a few dozen engineers;

      > Didn't Intel CREATE the x86 with less than a million dollars and a few dozen engineers?

      I think he meant a 686 or at least 586 clone, not a 8086 clone.

  11. Oops - speed typo ! by CdBee · · Score: 1

    The product we're shipping now, the C5P has a top speed of 1.4 to 1.5MHz, today, but the sweet spot is 1GHz. We have a fanless version at 1GHz. We also sell all the way down to 533 or even 400MHz, for low-power applications.

    Hope no potential buyers are put off by this - it must be sweet in a laptop, where power conservation is critical. That said, do VIA have a chipset to take advantage of the head start given them by the processor?

    --
    I have been a user for about 10 years. This ends Feb 2014. The site's been ruined. I'm off. Dice, FU
    1. Re:Oops - speed typo ! by rusty0101 · · Score: 1

      I would have to say that Yes they do. I have yet to see a via based [U]DMA chipset that can do better than 33mbps.

      My experience in simply replacing a via chipset motherboard, with a NForce2 chipset motherboard is that the twice weekly lockups during video capture experienced on the Via chipset completely disappeared on the NForce2 chipset, using the very same video capture cards, hard drives, video card etc.

      Even when I used an SIIG IDE card to drive the hard drives I still ran into problems, indicating that the bottleneck was where the video capture cards were attempting to cross the motherboard to get to the IDE controller, and not just with the IDE controller.

      At the same time I have had no problems with these chipsets in a 'workstation' environment where I am not streaming fairly high volumes of data (or merging multiple streams into a couple of files on a hard drive). Your milage may vary.

      -Rusty

      --
      You never know...
  12. Nice strategy but... by shic · · Score: 1

    I'm very impressed with the vision required to implement a "low-power" entry level "ordinary" pc all on one board... VIA should be selling these by the boat-load... but for those of us who want to use their technology I still see a few remaining strategy issues:

    The price of the VIA boards is impressive, however they need to consider system costs... because they are using a less-usual form factor many customers are faced with excessive costs for supporting bits-n-bobs. Many case/PSU combinations are more expensive then the motherboard and processor - and often 5 times the price of an ATX PSU/case... despite the smaller size and allegedly cost saving low-power requirements for the PSU. I'd like to see a partnership emerge to offer entry-level cases (preferably supporting more than 1 PCI card) for a competitive price.

    While the specification and price of these all-in-one motherboards is impressive, I can see many applications for these boards with no need for video at all - let alone hardware MPEG functionality. Sure there are boards with low-spec video - but these also take low-spec RAM... isn't there a market for a board aimed at gateway or remote access applications?

    1. Re:Nice strategy but... by sam_van · · Score: 3, Insightful

      While system costs are higher for the consumer assembling a system, I don't think that a product for the masses will encounter the same problems. Manufacturers enjoy economies of scale that we don't; otherwise the low price providers (Dell/HP/etc.) would still be selling generic beige boxes instead of snappy looking cases.

      --
      Thinking of starting a business in Minnesota? Me too! mnsmall.biz
    2. Re:Nice strategy but... by confused+one · · Score: 1
      While it's true that some of the very small cases are quite expensive, If I remember right, VIA designed the board to mount into an ATX case. (although it'd be awfully empty)

      I've looked at my $39 mini-atx case and it appears the mounting holes for a mini-itx board line up with holes already drilled on the mounting plate.

  13. NEVER! by The_Real_Nire · · Score: 1

    Our whole strategy is so close to the, if you will, the fate of Linux. No, I won't

  14. now... by Run4yourlives · · Score: 1

    If only they can take all that engineering power and design a decent website...

  15. I Wish for RISC by RAMMS+EIN · · Score: 2, Interesting

    I think VIAs mini-ITX range of products are really cool. However, I wish there was an equivalent based on ARM, MIPS, PPC (seemingly any kind of RISC) CPUs. Those architectures always seem to beat an x86 of similare performance when low power, low heat production, low cost, small size, etc. are concerned. I care about these things. I don't need a super fast computer, so I don't want to pay more for a chip with a messy architecture that needs more power, needs cooling, and has a large die.

    Sadly, the nice, small boards and CPUs that I would like to have are hard to come by, and you pay a price penalty for that. Then, the next best thing is a sort of mainstream x86 line that aims for the same goals, and that's exactly what Centaur is doing (and Transmeta, although they seem to have failed to satisfy even themselves).

    So, if anyone knows where to get cheap RISC systems (a few hundred euros tops) in the Netherlands, please tell me.

    --
    Please correct me if I got my facts wrong.
  16. This is being done...as mentioned in the interview by sam_van · · Score: 2, Informative

    Check out Ministry Mobile's device. Vaporware?

    --
    Thinking of starting a business in Minnesota? Me too! mnsmall.biz
  17. There are real advantages, too by RAMMS+EIN · · Score: 2, Insightful

    ``There are plenty of upsides, and the only downside is the "other stuff looks better on paper" argument.''

    It doesn't just look better on paper. A cleaner architecture results in a simpler chip, meaning lower power consumption, cost, heat production, and smaller die size. Those things matter to embedded devices, and thus MIPS or ARM would be a better fit than x86.

    What x86 has going for it is that it is much more abundant. The chips are produced in higher volume, making them easier and cheaper to get, it's easier (and thus cheaper) to find programmers who can code for them. It's really all about Worse is Better.

    --
    Please correct me if I got my facts wrong.
  18. Strange by BaronGanut · · Score: 1, Funny

    how to produce an x86 clone with a few million dollars and a few dozen engineers

    I just can't understand why more people haven't done this!

    --
    Mohahah!
    1. Re:Strange by dfghjk · · Score: 1

      It's very hard and the few dozen engineers are really good.

  19. hmm by mph_aus2000 · · Score: 1

    very interesting stuff. I work in the same building as Centaur. They get catered lunch for all the employees everyday, and I get to sit and watch them all eat. i always wondered what that company did

    1. Re:hmm by Anonymous Coward · · Score: 0

      and we watch you during lunch as well.... :)

  20. Gotta pimp it out: by ajlitt · · Score: 2, Informative
    1. Re:Gotta pimp it out: by Kazymyr · · Score: 1

      I have just ordered one of those a few days ago. Wish Cirrus wasn't dragging their feet on shipping like they do. Can't wait to get it.

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
    2. Re:Gotta pimp it out: by ajlitt · · Score: 2, Informative

      (not speaking for Cirrus, but as an employee in the group that supports this part) It does rock. Unfortunately we were blindsided by the demand we got when we announced this board and pricing at ESC in April and are still recovering from the demand. Be patient, we're making all we can.

      BTW, remember to register the board for access to our FTP site where the latest releases of our Linux environment live.

    3. Re:Gotta pimp it out: by Kazymyr · · Score: 1

      I'm waiting... (taps foot)... :)

      I wish you had similar eval boards for chips higher up on the food chain, say the EP9302 and such.

      --
      I hadn't known there were so many idiots in the world until I started using the Internet -Stanislaw Lem
  21. They have it backwards by Profane+MuthaFucka · · Score: 1

    Instead of getting the X86 into other markets, why not get some of those embedded CPUs into the desktop and server market?

    The x86 has served us well, but it's time that old instruction set was retired. They should open up an interface into the RISC core of modern X86 processors. Let us write code directly to that, and eventually the CISC code will die out.

    --
    Fascism trolls keeping me up every night. When I starts a preachin', he HITS ME WITH HIS REICH!
    1. Re:They have it backwards by CyberKnet · · Score: 1

      Because everyone knows that RISC is RISC, and deep down, they're all compatible.

      And BSD is dying too.

      Nice try.

      --
      Video meliora proboque deteriora sequor - Ovidius
    2. Re:They have it backwards by bluGill · · Score: 1

      When AMD designed the x86-64 they considered adding registers, and did some worth. Eventually they added far less registers than expected, telling everyone that in the real world they were better off not exposing more to the real world, the processor could get better performance in the transllation unit than it could get by letting you use them.

  22. Success by Allen+Zadr · · Score: 2, Informative
    This guy explains the "laughing stock" and "bought by VIA" parts very well. It was really a great interview to read (maybe you should try it).

    It immediately occured to me that this guy is very good at thinking out of the box. A processor company is not an easy thing to create, especially with a startup budget as low as 15 million US.

    Now they have been through 5 major product revisions and are currently shipping 1GHz PIII compatible processors that don't need a fan.

    Technically, I'm not laughing. Personally, I'm wondering if I should send him my re'sume'.

    --
    Kinetic stupidity has a new brand leader: Allen Zadr.
  23. ASM by bsd4me · · Score: 2, Informative

    Not really. There isn't much assembly necessary on a modern embedded platform.

    Ditto. I have only really used asm in two or three places in embedded projects. One is in the initial bootloader. The second is in instances where the compiler won't do what I want. The third is to access special instructions that the compiler doesn't know about (eg, eieio on the PPC). The second and third instances can't mostly be dealt with inline asm and cpp macros, and gcc make this a lot easier if you have access to it.

    --

    (S(SKK)(SKK))(S(SKK)(SKK))

    1. Re: ASM by wirelessbuzzers · · Score: 1

      You're right. Assembly is getting less and less useful. It's still useful if your chip has to drive some interface, though: I had to use it on a PIC chip where one particular processing loop had to get a fair amount done and had to take exactly 26 clock cycles every time, because it was also driving the infrared LED and there was no pulse-width modulator.

      --
      I hereby place the above post in the public domain.
  24. Great low power (thus heat & noise) processors by tji · · Score: 2, Interesting

    I am a long time user of their C3 processors.. His quote about the current state of the product illustrates my main reasons for using it:

    The product we're shipping now, the C5P has a top speed of 1.4 to 1.5GHz, today, but the sweet spot is 1GHz. We have a fanless version at 1GHz. We also sell all the way down to 533 or even 400MHz, for low-power applications.

    To give you an idea about the 1GHz version we're selling today, the worst case power -- not "typical" or "average" power, which other people talk about -- our worst case power is 7 watts, which is low enough to do fanless at 1GHz [story], and no one else can do that.


    To do a fanless CPU in a small case, you really need to be under the 10 Watt range. Their CPU's do this nicely. Compare that to 80W+ for current Intel and AMD workstation processors. ( Intel's Pentium M has good power spec's, but it is very hard to find chips & boards for end user purchase. Most Pentium M boards are intended for embedded or industrial use, and are priced for OEM quantities). Add a 2.5" hard drive (at ~ 2.5 Watts vs. 15 Watts for a 3.5" drive) and you have a nice low power Linux server, which takes up very little space and can run almost silently.

    I have been using an 800MHz C3 for about three years now. I run it fanless, with a big heat sink in a medium sized case. It has been completely reliable, and plenty fast for my DSL Linux services (WWW, SMTP, FTP, VPN, DNS, NTP, etc.) + LAN SMB services.

  25. The rest of these questions by Master_Control · · Score: 2, Funny

    ...will be Centaur questions.

  26. Future processor innovations? by tji · · Score: 2, Interesting

    At the end of the interview, he mentions the crypto hardware they've put in recent processors.

    six months after we first started shipping our product with encryption in it [story], we have three or four operating systems, including Linux, OpenBSD, and FreeBSD

    This is a really great capability.. hardware random number generation, and ridiculously fast AES crypto (VIA claimed 15Gbps AES. That's probably for on-cache data. But, it's screaming fast anyway).

    Then, he give a little teaser about future CPUs:

    Our next processor -- I haven't ever told anyone, so I won't say what it is -- but our next processor has even more things in it that I think will be just as quickly adopted by the open source software world, and provide even more value.

    I wonder what this will be, more crypto - like public key accel, or a new direction? As an HTPC user, I would like to see some better multimedia capabilities. The MMX/SSE stuff is nice, but it doesn't cut it for the heavy lifting needed for HDTV MPEG2 processing, or WMV HD processing.

    1. Re:Future processor innovations? by nchip · · Score: 1

      I find the following comment even more insightful:

      It's always bothered me that hardware can do so many things relatively easily and fast that aren't done today because there's no software to support it. We just decided to try to break the mold. We were going to do hardware that, literally, had no software support at the start. And now the software is there, in several variations, and people are starting to use it. I actually think that's only going to happen in the open source world.

      I wonder how many features engineers discard just because "yeah this is neat, but I doubt windows will support this...".

      --
      signatures pending - ansa@kos.to - (dont mail there)
    2. Re:Future processor innovations? by Gumber · · Score: 1

      signal processing circuitry and instructions aimed at software radios, perhaps?

    3. Re:Future processor innovations? by Anonymous Coward · · Score: 0

      I think software radio is way too much of a techy niche. It's a really cool trick to pull off, but look at how cheaply purpose-built radio devices are made. There is no way to compete with that.

      My guess is that it will involve video processing. With all the talk of multimedia convergence, and the growth of HDTV, they should view it as a valuable potential market. Since their processors are not fast enough to handle high definition video on their own, it is an area ready for acceleration.

    4. Re:Future processor innovations? by mabhatter654 · · Score: 1
      But they're finding LOTS of linux people willing to line up to help! I'd bet 50% of their Eden boards are purchased specifically to run linux in some capacity. Via in particular seems pretty set at toeing the windows line, but almost all the good Via eden fan sites include installing linux in some capacity.

      Via in particular is precarious because MS could really hurt them if they get too far out-of-line. Fortunately, they have a good 30%+ share of the chipset market so MS can't ignore them...but they still have to roll their own chipset patches...notably Intel doesn't have to, do they? and that's all the power MS needs isn't it.

    5. Re:Future processor innovations? by bluGill · · Score: 1

      Latter in the story he hinted that it would be RSA public key encryption. Hinted only though, so if it isn't don't be too surprized. Still if you are a betting guy it you could put money on it and call it a safe bet.

    6. Re:Future processor innovations? by tji · · Score: 1

      I thought he mentioned PK crypto as one of the already announced features in a chip that was on its way.

      He said they did symmetric crypto (AES), Public Key (RSA), and a Hash function (RSA).

      So, that chip would make a blazingly fast IPSec or SSL processor. Or, at least it would mean that IPSec processing and SSL would have a negligible hit on system load for most uses.

  27. Re:Correction by Nexus7 · · Score: 1

    It's standard in British English. Companies are declined as plural.

  28. Transmeta by Nazmun · · Score: 1

    Wins for ultra low power+performance mix.

    Unless we are talking about a totally different line here from the Epia's. This looks like it could be it.

    But if it's related to the epia's then it's almost worthless. Last time i checked the epia's performance it was had half the performance of a celeron at similar levels.

    Your better off with a mobile athlon xp (the 35 watt mobils, standard mobils are the 45 watt) permanently underclocked significantly (to 600mhz-1 ghz or so) and if possible with the voltage lowered for even less electricity.

    If you want even less power usage there is transmeta.

    --
    Hmmm... Pie...
  29. This man rules! by Fefe · · Score: 1

    He is the archetypical hacker, achieving the near impossible with shoestring budget and garage band manpower against all odds.

    He is one of the quiet heroes of these days. Companies like Intel, IBM, HP have near unlimited budgets at hand, can afford to waste billions on crappy underachievers or stillbirths like Itanic, and still achieve but a fraction of what Centaur does.

    The only gripe I have with them is that they don't put their CPU optimization guide plain up front on their web site so the gcc people can make a better viac3 target. So far, the proper gcc options are -march=i586 -mcpu=i486. And Via should put their data sheets, driver sources and specs on the web just like that, not behind some registration crap. Open source people are remarkably helpful if you don't put stones in their way.

    Go, Centaur! Go, Via!

  30. cheap laptops by zogger · · Score: 5, Insightful

    we have the cheap desktops now, like the walmart 200 buck boxes, but does anyone make a *new* laptop that uses this guys chips and a via mobo, and is it under 500 clams brand new? what he says is true, and I'm in that 90% range that what passes for a mid range speed is MORE than enough for my purposes. I don't do gaming or weather modeling, etc. That's the breakthrough and the sweetspot general pricing range I am waiting for, the linux laptop,comes complete and works outta-the-box, including wireless, under 500$, and *upgradeable*. Is this possible now? Say it is, I mean, 3-4 years from now I could replace the whole mobo with whatever is cool then, along those lines, yet alone just swapping in a new cpu, etc. And a REAL battery (or batteries even better, in some sort of standardized arrangement, with 12 volt DC input being standard) in it, I'll tote a couple extra lbs, I don't need a laptop to weigh sub-3 lbs, 6-7 is still quite acceptable, it's the same as the ones I have now. His chip at 7 watts sounds great, and 1 ghz is perfectly acceptable. Heck, even if it had a switch to toggle it back and forth between 3 watts and 7 watts would be nice, as in clocked/not clocked.

    Desktops are a different story, you can always swap around parts and do a little drilling and cutting, etc to make anything fit, but laptops are teh sucks for upgrading and working on, more or less, and they are too expensive as they are sold now to change out very often (for me I mean, but bet a lot of other folks feel the same way). I'd get one and use it for my main desktop most of the time then with an external keyboard and my regular mouse and monitor, scrap energy hog desktops, but retain the option of true portability.

    1. Re:cheap laptops by jschottm · · Score: 2, Insightful

      -----
      Does anyone make a *new* laptop that uses this guys chips and a via mobo, and is it under 500 clams brand new?
      -----

      No, because laptops are expensive because of more than just the chip. LCDs make up a good portion of the cost of an inexpensive laptop. The engineering and design of laptops takes more money than a desktop because you have to worry about size, power consumption, and weight, three factors that aren't much of an issue with cut rate desktops. A 1 year support policy for a laptop costs more than a desktop, because of all the banging around that laptops take.

      -----
      That's the breakthrough and the sweetspot general pricing range I am waiting for, the linux laptop,comes complete and works outta-the-box, including wireless, under 500$, and *upgradeable*.
      -----

      Keep holding your breath, until LCD prices drop.

      If you want something cheap and portable, you've got plenty of options. If you want something with a built in mouse, keyboard, and monitor, you're going to have to be willing to pay for it.

    2. Re:cheap laptops by Jeff+DeMaagd · · Score: 1

      A desktop LCD panel is still something like $200+ for a 14" XGA and is about the size of my laptop. How do you propose to fit an entire system, including slim DVD, slim hard drive, CPU (don't forget the heat sink!), RAM (SODIMM at that) and a LiOn battery into that at same cabinet size for $500 using current prices?

      I doubt an individual can make a full-featured briefcase computer for that much.

      BTW: There's no need to "toggle" speeds using a switch. There are applets to change a mobile CPU's speed dynamically.

  31. Bench's To Provide Evidence by Nazmun · · Score: 1

    To provide evidence for my statement that C3's are extremely weak here is some benchies of the 1.0 ghz c3. http://www.tomshardware.com/cpu/20020605/c3-07.htm l As you can see a 667 mhz Celeron handily beats it.

    --
    Hmmm... Pie...
    1. Re:Bench's To Provide Evidence by confused+one · · Score: 2, Informative
      That's a C3 "Ezra". It had a FPU that ran at 1/2 the clock speed and only had a 133MHz bus.

      Since then they've come out with the C3 "Nehemiah" which has a full speed FPU and has a 266MHz bus. They've gotten somewhat faster; although, I don't have any benchmarks for you.

  32. Not Midrange performance by Nazmun · · Score: 2, Interesting

    I keep on having to point this out on Slashdot as many people don't realize how bad the performance of a via c3 is. The 1.0 ghz system is often times twice as slow as a 667 mhz Celeron in certain tasks. I'd label this as an ultra low range processor not midrange. I've seen simimlar benchmarks with a 400 MHZ p3 beat it handily. Benchies: http://www.tomshardware.com/cpu/20020605/c3-07.htm l

    --
    Hmmm... Pie...
    1. Re:Not Midrange performance by zogger · · Score: 3, Insightful

      Well, even so, it's still would be better than what I am using now, a PP200. I know all sorts of people still using older systems because they paid a lot of money for them and they still work well enough. So, you are right on what is top end now or midrange, but the centaur guys observations that his chips are good enough for 90% of what most people use a computer for are most likely still valid. Here on slashdot you have a much higher ratio of people who have brand new or pretty new systems than you do in the "general" population, and uber geeks tend to hang out more with other uber geeks, so perhaps they don't see it as much. I know most corporate bosses make so much money and live such a different lifestyle it's hard for them to relate to joe working stiff, that's why you see so many weird business changes-marketing and the bosses can't relate to most people, they lose track of anything outside their little niche worlds of much better off financially people than any sort of median-norm. I know there's no company out there that I have seen is offering any sort of new laptop that even possibly could be in my price range, so I hang on to the older ones, and I bought them used. Same with my desktops.

      There's different niches out there, and there's a huge niche where "cheap and good enough" is still king, and it was refreshing to see an article on slashdot where that is covered, usually it's some new thing that is the fastest/best and most expensive, and most energy hog as well, and seeing as how I am into alternative energy, I always look at that angle. I don't want an electrical sub station needed to power me and my house and stuff, I think that is beyoind ridiculous and getting into the generational greedy range. that's ME, others can think different, but it is how I think...

      This guy at centaur gets it on where his market is, and I'm exactly the sort of person he is thinking of, that's why I wondered if any company had an upgradeable cheap laptop based on his cpu/mobo stuff yet. Like my desktop, when I get ready I'll put a new board and CPU in it, but for now, this is "good enough" for me, just never seen a laptop I can do the same thing with, and I want low power, good battery life, and upgradeable by switching a few cables and slapping in a new board for cheap a few years hence.

      Just a-wondering is all, no biggee. If I really wanted or needed a liquid cooled monster like we see all the time here, I guess I would get one, but it would be overkill for my needs, and definetly suck way too much juice and throw too much heat. don't need it really, like I said, don't do games or modeling or whatever. Folks who do got tons of choices, folks who don't got almost squat for choices it appears, and I despise the forced upgrade business solutions we keep seeing.. There's plenty of choices out there in that expensive/faster/ mo powah direction, but very few choices the other way.

    2. Re:Not Midrange performance by confused+one · · Score: 1
      when Tom's did that benchmark, they were using an "Ezra" (via's nomenclature) C3. It had a 1/2 speed FPU and a 133MHz bus.

      The later generation "Nehemiah" C3's have a full speed FPU and a 266MHz bus. This should make them benchmark much better.

  33. creators to 'discuss' disposition of unprecedented by Anonymous Coward · · Score: 0

    evile et AL? i wouldn't want to be won of them.

    many are saying they may be a little peaced off buy yOUR insistence on continually overheating the main processors?

    consult with/trust in yOUR creators.... successfully cooperating since/until forever.

  34. the guy is blind - transmeta competes with them by Anonymous Coward · · Score: 0

    He says noone else can make a 7w 1ghz part? huh? look at the Transmeta Crusoe. It is in the same price range, performs better and has even better low power consumption.

    1. Re:the guy is blind - transmeta competes with them by mabhatter654 · · Score: 1

      But Transmeta is too busy trying to score big. Via is only able to do this because Intel left a void for socket 7 chipsets and AMD prefered to let Via grow up. Now, Via is a 200lb monkey. They are too big to put out of business and in particular their purchase of Centaur and S3 ensured that Intel can't get them with the patent portfolio [Via bought other chip companies with intel crosses...so intel has to play fair] If Transmeta was serious, they need to talk to Via... Via is growing...they're interested in playing fair with anybody! Transmeta doesn't have the clout on it's own to issue a motherboard like ITX...even though it would be absolutely killer if they did!

    2. Re:the guy is blind - transmeta competes with them by dfghjk · · Score: 1

      Performs better than what? Better than a 80286 maybe. I don't think their power is as good as claimed either. I had a Crusoe powered notebook and it was easily the worst, slowest dog I've ever owned.

  35. Re:Correction by Anonymous Coward · · Score: 0

    Dear Sir,

    YHBT.

    Regards,

    Rufus T. Harlemberry

  36. Can Centaur beat 27W? by emil · · Score: 1

    I use a 50MHz 486, bundled in a very old Compaq Contura laptop, to power my main home NAT gateway. It runs OpenBSD, and the power supply says it draws 27W (the LCD is disabled, so I assume it's much lower). What Centaur configuration beats this on power consumption?

    While the gateway runs sendmail, httpd, and I use pine on it occasionally, it is still tolerably fast (bittorrent seems to slow down the NAT). However, I'm thinking of adding some WiFi components, and I fear that the 486's max performance will be quickly swamped. Most Pentium laptops are twice the wattage at least.

    Other questions for Centaur:

    1. AMD64 adds 16 General Purpose Registers in 64-bit mode. Can Centaur add these to 32-bit mode? If so, would their non-register-starved x86 have an instant speed advantage of perhaps a couple of hundred megahertz for an OS/app that utilizes it?
    2. Likewise, is Centaur adding the NX bit for security? I understand that Transmeta has done so. My OpenBSD system's W^X would run faster with NX.
  37. Mobile Athlon on The desktop by Nazmun · · Score: 1

    They have two models the 45 watt and 35 watt models. They are under $80 bucks and you can stickem in a desktop mobo.

    The 35 watt can most likely be cooled with an ultra quiet fan.

    I'm just pointing out that this ultra low end stuff. My system is currently 1.5 years old (i've lived without upgrading core components for several years).

    --
    Hmmm... Pie...
  38. and that's another thing... by zogger · · Score: 1

    ... the displays. They should be replaceable easy and be sorta standard. But isn't that lcd price full retail? If it was gotten by the manufacturere and sold as part of the laptop system, seems like it could be cheaper, overall. All I know is, whomever comes up with an upgradeable laptop, something that isn't obsolete junk in two years AND can be fixed/repaired/upgraded, around my price range, and preferably running linux from an OEM install so everything "just works", will be getting my business. and I bet they'll sell a lot of them, too, make it on volume.

    I know what I want doesn't exist yet, so I'll just hold out then. I have enough for now. Same thing I did with computers in general, I had to hold out until there were used ones that were affordable for me on the market.

    cell phones now, something that works perfectly fine =30$
    or
    wifi AP = 70$
    PDAs of various flavors,or music/media machines 2-300$, these are just small computers now, realistically
    LCD screens as mentioned=200$

    Now that is all retail, seems like they could be combined and get *close* to 500$. I know it's not there yet, but still, it's sniffin distance now, if some company wants to head thataway

  39. Why x86? by EmbeddedJanitor · · Score: 1

    If Linux is central to their strategy then there is no need for x86-ness. x86-ness just makes the CPU design that much harder and commoditises their product. The x86 CPU market is very difficult to compete with unless you have something special to offer. You need fresh high speed/high margin devices every few months to keep alive. It would seem these folks are dumpster diving and trying to produce a lower price CPU to fill the bottom end. A difficult thing to do when old Pentiums etc could be pressed into service instead.

    --
    Engineering is the art of compromise.
  40. the other option by poptones · · Score: 1
    Just hit ebay and replace thw whole damn thing. At this time there are at least three working units there with a few days left on the auction and all of them are less than 20 bucks.

    If what you want is a working 380 laptop there ya go. Why anyone would want such a dead end machine, though, is beyond me. At least the relatively power hungry 600 can be upgraded to nearly 1GHz and a good bit of ram using standard parts... those old 3 series are just... portable i-openers: underpowered, but "too good to throw away" only because they have a reasonably high quality, portable display.

  41. You don't count by poptones · · Score: 1
    You don't count because you are not the type of person who buys a new computer... pretty much ever. You are still using a pp200? I have boxes of those things here I give to people who are too poor and/or uneducated to realize the value of a home pc. It's too slow for gaming and too limited to be really useful for someone's porn addiction, so it's a machine that will either do the home some good or nothing at all.

    You could hop over to one of the surplus dealers and replace that raggedy pp200 with a box at least five time faster - I see 500-600mhz PIII machines go out the door all the time for $99.00. If an upgrade to five times the performance you are getting now isn't even worth a hundred bucks, then you simply don't count. You may have found it "refreshing" to read about a ceo who isn't hyping clock speed above all, but in the end you don't matter to him or the industry because your money never makes it up the food chain. You're not "the type" he's trying to reach because you obviously don't consider even a $300 laptop or $99 desktop a worthy upgrade - so when would you ever appear on his radar? Five years after, when the machines are so antiquated they're not even worth freight charges?

    I'm not saying this to dis you: I'm also into being a green geek and recycling everything I can get my hands on (thus my collection of old "giveaway" desktops and cheap refurbished laptops). But those Via boards are not designed for sub-$100 desktops. At best they'd make a sub-$300 desktop, and you can buy machines right now that would trounce such a low end machine for much less than $200 on the surplus market. And you wouldn't be generating any new pollutants (except the packing materials and the fuel for shipments) with the surplus system.

    So, are you really sure you're "the person he was thinking of?"

    You can buy 500mhz laptops for under $300 if you're patient with your bidding and expect to do a bit of parts swapping. And yes, if you buy the right systems you'll find a machine that is very well upgradeable just by swapping a few parts. My own portable pet is a 500MHz PIII frankensteined from no less than three previously dead machines (only one of which is now still dead). I do this all the time and my only concession to new is to buy a new hdd (if needed) since brand new (warranteed) 20gb drives are only about twice as expensive as worn out 4gb drives.

    You can do exactly what you're wishing, but you can't do it with new boxed parts and a three year warranty. If you want new then you got to get out the cleaning materials and spray paint and create!

    Your construction
    smells of corruption
    I manipulate
    to recreate
    in this air
    to ground saga
    gotta launder my karma...

  42. Via Eden...Gumstix by mabhatter654 · · Score: 1
    You mean like the Via eden series of embeded boards that use Centuar's processors! Go to mini-itx.com and take a look...it's pretty close to what you want! There are about a dozen varieties of VIA ITX factor board out there right now with the most expensive being under $200!!! There's plenty of Linux how-tos there to get you going.

    If pocket PC/zaurus modding is what you want check out Gumstix.com. It's an intel XScale processor 200 or 400MHz with 64Mb ram. It's ultra tiny but still really, really new [they only started in January!] And it runs Open Source Linux installed right out-of-the-box!!

  43. Yep they're dog slow! by mabhatter654 · · Score: 1

    They really are dog slow. They've gotten better with the new 1.2GHz ones they're about equivelant to a 900MHz P3. Their claim to fame is that the whole board only uses 10-15 Watts...at 1.2GHz. True intel makes underclocked mobile Celerons that are blazing fast, but still not that low power. And that intel chip cost more than an entire Via Eden motherboard!! The via boards are tweaked for Fun projects. And they run cool so you can put them in many places you'd never put a normal motherboard. Many come with options to run on BATTERIES or DC power. Try that with a normal PC!

  44. what? by zogger · · Score: 1

    --I've dropped coin on computers before, new and still expensive used, just so happens this is my favorite one of the dozen or so scattered around the room right now, although at best any of them are pentium 2s, 333's, 400s, etc. It is not the fastest clock speed, but it is the most *reliable* one of the bunch and I have had it the longest and it's just comfortable. Can't explain it any better than that-comfortable. I don't know why either, but it is. I have some dells, compaqs and various flavors of whiteboxes. My last brandy new one-a mac- though took a direct lightning hit on the line right outside, and was damaged severely, even through the surge protector. It still ran kinda sorta but I scrapped it. I really liked that machine. Since then I dropped almost a grand on a used laptop, then decided that was ridiculous to keep doing that every year or two, decided to wait a few years before getting another, so I have.

    I'm just going on a real rough rule of thumb in pricing, laptops were/are always around double the price of desktops for some *rough* similar numbers. To me, that means laptop prices are not dropping as fast as desktops, probably because they have a corporate mindset different criteria of shooting for the lightest weight and thinnest cross section, etc. That's a guess though. I keep reading bitch after bitch about laptop battery life, when the solution is still therte, just put up with a weight that was normal a few years ago, and pout in bigger battery or batteries, but no one is doing that. increase electrical demand, drop battery size, pray that modern battery tech works enough people won't return the machines after using them one day. I think that's nuts, but it's not my call there. I don't know what happened to people they lost strength or something, an extra 1 or 2 lbs seems to be so important people will pay an extra 500$ or something for that.. I'm a blue collar worker, so I guess that's why I don't understand it, that seems so trivially light to me, I'd much rather have a big large amp hour decent battery, and I think most users and corporate types aren't laborers, so to them that is too heavy or something. I'm not trolling or anything,or putting anyone down, just guessing as to the market demand. the mindset that goes to that market demand is totally alien to me, I admit that. I just never understood being afraid of any slight physical exertion,like carrying a laptop that is 2 lbs heavier here and there between airconditioned office and car and coffeeshop,but then paying money to go to some workout club is all. To me it's silly, but to each their own, I certainly do some silly stuff, ow what would appear totally silly to some urbanite, that's for sure. Same with cell phones now, almost all the new ones I see are useless, i don't like them, because they are TOO small, I can't see the screens or use what passes for a keyboard. It's called geezer eyes. And back to urban/rural silliness, heh, yep, just thinking about it. I can poke fun at meselfs too. /me goes over to compost pile for visual and olfactory inspection, to see if it's cooked enough to use in the garden. heh heh heh. Stuff like that. Not to mention what goes INTO said alleged compost pile. Joe office worker with the 2.3 lb laptop would be going WTF? and EWWWWW!

    %^)

    I still think there's a good market for a real low watt/low power needed but "good enough" set of specs with a cheap laptop, especially if they weren't as concerned with the weight and put beefy batteries in the thing to get run times up where they should be, ie, at least a full working day-8 hrs, plus a smidgen. I don't know how hard that would be to pull off, but I bet it would be MUCHO easier if they weren't as concerned with lightness and "looks" and thiness.

    Like I said, there's a ton of high end powerful and expensive options, but a dearth of NEW low end options that are good enough and cheap enough at the laptop market. I no longer see any reason for having computers be obsolete every year, and like I said, I don't "game",

  45. $500, 1ghz by poptones · · Score: 1
    that's already here. Been here quite a while in fact. It's sort of a laptop inb the sense it'll sit in your lap, but it has no internal battery. Of course you can buy an external pack that will fit nicely right under it and plug into the power jack and that's only an extra $120 or so and, because it can use gel cells if you want it won't wear out in six months like those overstressed lithiums all the new units are shipping with.

    Anyway, the $499 "laptop" that fits your description has been on the market for quite a few months now. You can still find them if you look around - the base unit has 128MB RAM, a 1.1ghz celeron, four usb2 ports, ser, par, video and tv ports, and a 10gb hdd. All units come with a 14" LCD of, I believe, 1280x1024 resolution. I've seen them on special once or twice with windows at that price, but more often than not XP is another $80 upgrade away, so technically you might consider it a $579 new laptop... but still, that's awfully cheap for a unit with so many expansion possibilities.

    So... how many people do you know who have one? When was the last time you read about one? If there were a hot market for something like this then you'd think it would be all over... but it ain't.

    On the flipside of that, a stinkpad is built like a tank even if it only has a puny little 13.3" display of 1024x768. And I don't believe you can get a cpu of 1.1ghz (at least not for the 600 model) - but then again since you can get a "real" PIII cpu for less than the price of a new battery pack 750mhz is probably just fine in comparison. I can handle wireless with a usb dongle or a buscard and I could even stick a 5gb hard drive in the other slot if I were so inclined which would reduce power consumption and give me an empty hard drive bay to store a tiny four port usb hub. And when I drop my thinkpad and the display cracks or I lose a few keys off the keyboard it'll cost like $40 to fix - as opposed to just trashing the $499 "new" model when something breaks because none of them even survived long enough to make it to the surplus market and the anonymous chinese manufacturer isn't around anymore to support it.

    That's the competition. That's why there's no one jumping at the chance to deliver a $500 uber-laptop: because a perfectly good laptop of similar performance can be had anywhere now, today - and with new models from brands like gateway and dell and ibm going for less than $1000 today, that no-name "good enough" $500 laptop is going to have an even harder time competing next year.

    1. Re:$500, 1ghz by zogger · · Score: 1

      what's the name of it?

  46. FPGA? by WoTG · · Score: 1

    Is it technically possible to put a small FPGA on the same chip as a regular processor? That would help multimedia "and other things"...

  47. Coz x86 will live. by TheLink · · Score: 1

    Hey eventually DNA code will die out too and those who are left will all speak Esperanto.

    Sure there's always something better, but it may only be better for _now_. Meanwhile there's something that works well enough and has a proven track record. BTW if Centaur vanishes, one could resort to AMD or Intel, without too much pain.

    So far, most of the RISCs and other "elegant" CPUs have ended up embedded or buried. You have Sun, which is having obvious trouble with SPARC. So it's either x86 or IBM's POWER which isn't really RISC, more a RISC-like CISC or a CISC like RISC whatever ;). Or Itanium, which isn't RISC nor that elegant either.

    High end CISC performs better in many real world cases, coz memory, buses, disks etc are slower than modern CPUs. Treat CISC as compressed RISC. Given that hardware is so fast, might as well "compress/decompress" your RISC instructions on the fly. Which is kind of what happens with say AMD, or even IBM's POWER chips.

    The popular embedded CPUs (ARMs etc) aren't that fast. And the stuff Centuar is adding to their chips may make the makers of network appliance equipment (VPNs/firewalls/content filters/IPS) quite interested.

    Now if/when they do 3DES fast too, things will get interesting. Coz normally at a product/buyer level, hardware VPN accelerators are typically a few thousand USD or something like that. With a Centaur chip - the new products may be using a cheaper CPU, and still have VPN/SSL acceleration... Wonder if some will get tempted to just have VPN acceleration "license keys" and profit even more ;).

    Intel has been trying to get rid of the x86 too, but...

    --