Slashdot Mirror


Firm Sues Sony Over Cell Processor

An anonymous reader writes that earlier this month, Sony received word of a lawsuit from a Newport Beach company called Parallel Processing. They've filed against the electronics giant alleging that the Cell processor, used in the PlayStation 3, infringes on a patent they own. They've made the somewhat outrageous demand that every infringing chip (and console) be 'impounded and destroyed'. From the article at Next Generation: "The patent, 'Synchronized Parallel Processing with Shared Memory' was issued in October 1991. It describes a high-speed computer that breaks down a program 'into smaller concurrent processes running in different parallel processors' and resynchronizes the program for faster processing times ... Parallel Processing said that Sony's alleged actions have caused 'irreparable harm and monetary damage' to the company."

67 of 330 comments (clear)

  1. hah by thatskinnyguy · · Score: 2

    If things weren't going bad enough for the PS3, then this comes along.

    --
    The game.
    1. Re:hah by Anonymous Coward · · Score: 5, Funny

      Yes, let's all stroke ours Wiis over this news.

    2. Re:hah by Anonymous Coward · · Score: 3, Funny

      That's okay, Parallel Processing could only have found out about the patent infringement by violation of the DMCA and illegal hacking of Sonys PS3 - so they'll be going to jail for a long time.

    3. Re:hah by Austerity+Empowers · · Score: 2, Funny

      Actually, if they were successful at generating an order for PS3s to be impounded and destroyed, it might create a pretty high demand for people to go buy them, just for the purpose of resisting whatever authority might try to do so. I sure would, it'd be fun.

    4. Re:hah by Trent+Hawkins · · Score: 2, Interesting

      a week doesn't go by where someone doesn't sure either Apple or Sony for one thing or another.

  2. What's next? by vigmeister · · Score: 4, Insightful

    Are they going to go after AMD and Intel for their multicore CPUs?

    Cheers!

    --
    Atheist: Buddhist in a Prius
    1. Re:What's next? by AKAImBatman · · Score: 5, Interesting

      No. Their patent appears to be directed at a specific subset of multiprocessing known as MIMD (Multiple Instruction Multiple Data) processors. The key to their "invention" is a processor that sits in front of the various processing elements and divvies up the chores to ensure that all processor elements are well fed.

      To be perfectly honest, I don't understand why they're suing Sony and not IBM. I suppose it's probably tactical, especially since Sony is actually selling the chips as opposed to IBM who's mostly talking about them at this point. (IBM fabs the chips on Sony's behalf.)

      It's hard to be sure, but this sounds like a patent troll case. The only thing that muddies the waters a bit is that this "International Parallel Machines, Inc." actually exists and sells products:

      http://www.ipmiplc.com/

    2. Re:What's next? by Frothy+Walrus · · Score: 4, Insightful

      look at the site -- they make PLC's, not general-purpose processors. they're not losing a goddamn cent to Sony or IBM.

    3. Re:What's next? by AKAImBatman · · Score: 4, Insightful

      Which makes little to no difference to patent applications. If you own a patent, the damages are in lost licensing fees for the patented technology. That's how inventors get rich. They patent an idea, then sell the rights to use the patent. Meanwhile, they get to stop working on their invention and rake in the dough.

      My point about their business muddying the waters is that their business adds a certain amount of legitimacy to their claims of owning the rights to and licensing such technologies. It does not matter if they produce the tech themselves or not.

    4. Re:What's next? by klingens · · Score: 2, Informative

      What chips is IBM making for AMD exactly?

      From what I remember, IBM licensed/sold/whatever SOI-technology to AMD. Not actually doing any fabbing. AMD uses their own (Dresden) fabs and has Chartered (CPUs) and TSMC (ATI GPUs) doing some fabbing for them.

    5. Re:What's next? by jd · · Score: 2, Insightful
      I'll give you an excellent reason for them suing Sony and not IBM. IBM is an 8000 lb. gorilla that has an army of vampiric lawyers so skillful they can not only draw blood from a stone, they can even draw blood from SCO. Sony's lawyers, on the other hand, have trouble with lawsuits against preteen fileswappers and computerless grannies. If you want to leech money, it's perfectly obvious which one you're more likely to leech successfully from.

      And, no, the patent is not valid. Such devices have existed for thirty years, albeit mostly in research labs and Universities. Prior art is prior art, however, and Sony needs only one example that is close enough to invalidate the patent.

      It is just possible that this lawsuit is funded by Microsoft or some other console manufacturer, in an effort to throw legalistic mud at Sony's console and thus boost sales of their own. Same way SCO tried to boost their sales by throwing legalistic mud at Linux. I would not rule that out just yet, as this may well impact sales. People aren't going to want to buy a console they can't do anything with and will have to destroy a few weeks later under court orders.

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    6. Re:What's next? by russotto · · Score: 5, Informative

      To be perfectly honest, I don't understand why they're suing Sony and not IBM.


      IBM has been involved in the parallel processing field for a long time. I'm sure they have plenty of patents which pre-date and overlap this one and probably quite a few that International Parallel Machines is arguably infringing on.

      The stuff in Claim 1 of the patent (5,056,000) is basic multi-processor stuff which certainly wasn't actually novel in 1989 (when the patent was filed). And the Cell doesn't seem to violate it anyway. It appears to be Claim 6 they are suing over. Claim 6 describes a particular way of partitioning processing power in a MIMD system, but again I doubt it was novel in 1989.

      They may not be trolling. But if they go against IBM, or if IBM intervenes, I don't think they can win.
    7. Re:What's next? by *weasel · · Score: 3, Interesting

      My guess is that their addition to multi-core processing, and the meat of the alleged infringement, revolves around dynamic, exclusive assignment of chunks of shared memory to each worker core.

      Setting up and stacking shared memory so that each worker core doesn't have to copy-in its working data set, nor copy out its results and still maintain data integrity gives a huge performance advantage. That is, core A is assigned shared memory chunk M1 exclusively, and when it's done processing, the control core assigns exclusive control of M1 to core B, so it can continue processing; Rather than core A copying in the contents of M1, then processing and then copying back out its results.

      Simply shifting exclusive control saves you the time of shuffling all that data between each core and shared memory and lets do more with the same local-memory and memory bandwidth. Even today, most of the multi-threaded apps I've seen burn a considerable number of cycles copying 'shared' data in to a worker thread/core and results back out.

      I would be surprised if that wasn't novel hardware design in 1989, though I'm certainly open to the possibility that it wasn't.
      Before 1989 I was a bit more concerned with the health risks associated with exposure to cooties.

      --
      // "Can't clowns and pirates just -try- to get along?"
    8. Re:What's next? by dup_account · · Score: 2, Insightful

      Umm... Sounds like the perfect defense, since IBM co-developed it with them.... And IBM's prior art is just as good as anyone else' for invalidating a patent.

    9. Re:What's next? by Intron · · Score: 2, Insightful

      Back in the 70s C.mmp used a crossbar switch to connect multiple shared memory to multiple processors with local memory. It covers claims 1, 2, 3, 6, 7 and 8 but claims 4 and 5 appear to allow a processor to simultaneously write data to multiple memories (local and shared). I can't think of a parallel architecture that did this.

      --
      Intron: the portion of DNA which expresses nothing useful.
    10. Re:What's next? by rizzo320 · · Score: 4, Funny

      look at the site -- they make PLC's, not general-purpose processors


      Yes, it does seem they make "Patent Lawsuit Cases" :-)
    11. Re:What's next? by jd · · Score: 3, Interesting
      Sequent's SHRIMP architecture was quite nice for this kind of work. (And you won't hear me say a whole lot nice about Sequent, having worked under Tim Witham - yes, the former OSDL guy - for some time.) The DoD was also developing with DARPA the iWarp engine. Download a copy of the report before it gets deleted by paranoid Homeland Insecurity guys! :)

      I also saw a lot of self-organizing work on the Transputers. These were fairly low-power processors (but respectable for the time) that could be trivially wired into a mesh as large as you like. Processes could be divided by the hardware pretty much as the hardware liked. Both code and data could also be declared MOBILE.

      Weird list of some historical events in parallel processing - there's a few other examples in there.

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  3. Patent Link by Anonymous Coward · · Score: 5, Informative

    Patent link. Should be in the summary, IMO.

    1. Re:Patent Link by alexhs · · Score: 3, Informative

      Thanks for the link.

      I was seeking who were "Parallel Processing Corp." (IP corp or are they actually producing something ?) but having such a generic name doesn't help,
      and searching for
      "parallel processing corp" / "parallel processing corporation" only gives links related to this lawsuit.

      I found the filing, and a short but interesting explanation here

      Also when searching for "parallel processing" "newport beach", I found the related announcement of Acacia Technologies.

      There also seems to be quite a few events about parallel processing in Newport Beach, like the Seventh International Parallel Processing Symposium (April 13-16, 1993)

      So has someone a clue about that "Parallel Processor Corp." ?

      --
      I have discovered a truly marvelous proof of killer sig, which this margin is too narrow to contain.
  4. in other news... by yorugua · · Score: 2, Funny

    ... Parallel Processing receives an undisclosed amount of cash from MS.

    Thanks god IBM quit building those RS/6000 SP2 system parallel thingies.

  5. In a related story by UncleWilly · · Score: 2, Funny

    An errant Sony Jet has crashed into the HQ for Newport Beach based company Parallel Processing resulting in a 150 foot fireball.

  6. not quite outrageous by mr_death · · Score: 3, Interesting

    They've made the somewhat outrageous demand that every infringing chip (and console) be 'impounded and destroyed'.

    The US Constitution gives inventors "... the exclusive right to their respective writings and discoveries." If they do win at trial, destruction of every infringing device is within their rights.

    Whether they have a proper patent, and if Sony infringes on that patent, is an exercise for the reader and jury.

    --
    It's Linux, damnit! Pay no attention to renaming attempts by self-aggrandizing blowhards.
    1. Re:not quite outrageous by swillden · · Score: 5, Informative

      The US Constitution gives inventors "... the exclusive right to their respective writings and discoveries."

      No, it doesn't. Rather, it gives Congress the authority to grant exclusive rights (for limited times). The distinction is important, because Congress still gets to decide if such rights should be granted and what their precise scope should be.

      If they do win at trial, destruction of every infringing device is within their rights.

      Perhaps, but I doubt it. I haven't studied patent law much, but I do know that the purpose of patent law is to encourage the use of new inventions, so giving that much power to the patent holder would defeat the purpose. The law and the courts don't look kindly on patent owners who want to lock up the technology and prevent anyone from using it. Instead, what they want to see is patent licensing, so that inventors are compensated for their work and for their decision to publish their invention via the patent process, but so that the invention is used for the benefit of the society who funds the enforcement of the law.

      In the case of infringement, courts look for the most equitable way to repair the damage to the plaintiff, and there's no way that ordering Sony to buy back and destroy every PS3 is equitable. It would be unnecessarily injurious to all of the innocent people who bought PS3s and would force Sony to pay amounts that far exceed the value of the processors in the units (since Sony would have to buy back and destroy the entire units, not just the CPUs). Not only that, but it would do little or nothing to make the plaintiff whole, since they wouldn't get a penny from such destruction. It would be an absolutely senseless remedy and if any court ordered it, it would be overturned on appeal.

      The plaintiff can ask for whatever remedy they want, but this one is pure grandstanding, and there's no way they can believe that they would get it -- and it's extremely unlikely that they even want it.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
  7. Re:Impractical by toQDuj · · Score: 4, Insightful

    I don't think there ever was an "impound and destroy" precedent in patent law. It is completely ridiculous, and the only reason I see them doing it is so they have a starting point for a haggle-structure. You start with something completely preposterous, and any further proposal will come over as somewhat reasonable.

    B.

    --
    Every experiment which ends in a big bang is a good experiment.
  8. You don't get it. by LWATCDR · · Score: 4, Insightful

    They don't want to have every PS3 impounded and destroyed. They want MONEY. By pushing for nuclear option they hope Sony will pay them off. They probably know that they don't have a chance to win in court but by making the stakes so high they are hoping that Sony will just give them a few million to go away.
    If they where just asking for damages then Sony would without a doubt go to court and beat this case. So they want to push the risk level to a point that Sony will just offer them a wad of cash to get them out of their hair.
    If they did recall all the PS3 Son would instantly loose not just the console race but it would also kill Blue Ray since the PS3 is the most popular Blue Ray player on the planet.
    My guess is that Sony will smack them down anyway but it is a good gamble.

    --
    See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    1. Re:You don't get it. by funkatron · · Score: 2, Interesting

      Is it actually possible (legally) to impound and destroy PS3's? Once people buy them aren't they those people property or is there some way to override this?

      --
      "Welcome to our world. We are the wasted youth. And we are the future too." Yes, I know these are stupid lyrics.
  9. Do they know who they are messing with? by macdaddy357 · · Score: 2, Interesting

    I wouldn't be surprised if Sony took out contracts on these clowns, and made them sleep with the fishes.

    --
    How ya like dat?
  10. Don't mess with IBM's IP Lawyers by dreamchaser · · Score: 4, Interesting

    IBM holds a lot of the IP that goes into the Cell. They have a very good legal department. This little company may just have bitten off more than they can chew.

    I can see the IBM lawyers now..."Hmmm, interesting. Yes it may be possible that you have something there on this one patent. Let's see..." ruffles through a huge stack of papers in front of him. "However, we've discovered that you're also in violation of these 127 patents of ours. Now, shall we deal?"

    1. Re:Don't mess with IBM's IP Lawyers by Halo1 · · Score: 2, Interesting

      Obligatory IBM v. Sun.

      --
      Donate free food here
    2. Re:Don't mess with IBM's IP Lawyers by darkmeridian · · Score: 2, Informative

      In its heyday, IBM had a reputation for being a tough patent troll. There is an apocryphal story where IBM blue suits go over to Sun and presents how a Sun product was infringing an IBM patent, and a license would cost only $x million. After the IBM presentation was over, the Sun engineers go up and rip apart the IBM claim charts, and showed that the patents were not infringed.

      The blue suits stand up and say, "Well, we can go back to our vault and find another patent."

      Sun took out a license.

      Moral of the Story: Walking up to IBM and suing them for patent infringement is a dumb idea.

      --
      A NYC lawyer blogs. http://www.chuangblog.com/
    3. Re:Don't mess with IBM's IP Lawyers by oGMo · · Score: 2, Interesting

      I can see the IBM lawyers now..."Hmmm, interesting. Yes it may be possible that you have something there on this one patent. Let's see..." ruffles through a huge stack of papers in front of him. "However, we've discovered that you're also in violation of these 127 patents of ours. Now, shall we deal?"

      Unfortunately the defensive patent portfolio only works if you're not being sued by a patent-holding firm. If they're not actually doing anything but litigating, chances are they're not violating any patents, I think (IANAL). I'm not sure that's the case here, though.

      --

      Don't think of it as a flame---it's more like an argument that does 3d6 fire damage

  11. California + Tokyo = Texas? by jedidiah · · Score: 4, Interesting

    What I find a bit odd and perhaps suspicious about this whole thing is the fact that this case is being filed not where this company seems to be located, and not where any Sony offices are located but in TEXAS. Why isn't this being adjudicated in LA or San Diego?

    What do they think the bumpkins in Tyler might gain them?

    It also seems bizarre that they are bringing suit only now. This product has been on sale to the general public for quite awhile. This means that it has been available to developers for ages. Why didn't this get nipped in the bud while the units were still game studio prototypes rather than waiting until Sony made and shipped a million of them?

    --
    A Pirate and a Puritan look the same on a balance sheet.
    1. Re:California + Tokyo = Texas? by catbutt · · Score: 3, Informative

      Well it's usually nearby Marshall Texas that patent cases are filed in. They have very patent friendly (and expedient) courts there. http://www.overlawyered.com/2005/01/marshall_texas _patent_central.html

    2. Re:California + Tokyo = Texas? by mr_death · · Score: 2, Interesting

      Tyler is a famous federal district where patent holders get better results, on average, at trial.

      Why filing here isn't considered "forum shopping" isn't clear, but then again, I don't live in the same universe as lawyers do.

      --
      It's Linux, damnit! Pay no attention to renaming attempts by self-aggrandizing blowhards.
    3. Re:California + Tokyo = Texas? by Kadin2048 · · Score: 4, Informative

      The U.S. District Court for the Eastern District of Texas is well known in patent and IP litigation. It's frequently called the "second rocket docket" (the 4th District, in Virginia, being the original one) because of its rules for discovery, and very firm deadlines during trials. They also have a jury pool that's pretty conservative, arguably biased towards rightsholders, and judges that are receptive towards patent plaintiffs (certainly moreso than the average jury pool in the 9th District, which includes California).

      However some people have speculated that since rolling out the red carpet for patent cases, that they're beginning to become overwhelmed:
      http://www.law.com/jsp/article.jsp?id=110354972899 8

      --
      "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
    4. Re:California + Tokyo = Texas? by bryguy5 · · Score: 2, Interesting

      I live in Tyler and yes there is a larger than average percentage of bumkins around here.

      I can also attest that there is no interest in Intellectual Property Rights as mentioning IP is a great conversation stopper (as opposed more interesting topics such as hunting, fishing, trucks, or weather).

      But the real reason has to do with the expidited and cheap legal process set up in neighboring Marshall, TX (frequently and well covered in slashdot) that gives patent trolls the most bang for their buck.

      The plantiff can raise suit anywhere Sony sells their PSP's so naturally they don't want to do it on Sony's home turf.

  12. Re:How would that work? by biocute · · Score: 2, Funny

    Do you really think people are going to volunteer to have their PS3 destroyed because you patented the computer processing version of the assembly line?

    Yes. That's why we heard people are installing, uninstalling and reinstalling Windows all the times. Now we know it's not because it is unstable.

  13. Re:Cray had prior art/implementation a decade earl by Epi-man · · Score: 3, Informative

    What are Sony's lawyers going to patent next - using MPP (multiple parallel painters) to paint a house?


    At least read the headline and figure out who's holding the patents.
  14. Re:Infringes my "electronic brain" patent by u-bend · · Score: 5, Funny

    Dear brain processor dude: this is God. Cease and desist. I own the patent on brains. Have a nice day.

    --
    u-bend
  15. Re:How would that work? by gad_zuki! · · Score: 3, Interesting

    Stuff has been destroyed in the past by court orded (usually unsafe items). They dont go after the end user, they just get warrants against warehouses and then the court makes them dispose of the remaining product. The manufacturer tries a recall/rebate too.

    The fact that this is even possible is further proof that the patent system is really useless.

  16. Concept by jshriverWVU · · Score: 2, Insightful
    After reading the patent the one thing that popped in my mind that is "similar" to the Cell concept is the idea of having 1 master node CPU to help direct the remaining CPU's.

    While most dual/quad systems, the program or OS itself takes care the threading. With Cell and apparently this patent the master CPU helps take care of that. Still not a very patent. As the concept of a master node and slaves nodes for parallel processing has been around for decades. Just those tend to be 1 computer acting as a master with other slave "computer" nodes. Just in this patents case they're replacing "computer" with "CPU"

    Personally I hope Sony wins.

  17. hmmm. by apodyopsis · · Score: 4, Insightful

    from TFA "Parallel Processing said that Sony's alleged actions have caused "irreparable harm and monetary damage" to the company.".

    Oh, Really?

    Did they mean to say "Parallel Processing said that Sony's alleged actions have caused an opportunity to turn a fairly wide ranging patent that is useless on its own into some solid income via legal means.".

    So they waited to see if the console was selling then hit them with a law suit so Sony would be more inclined to settle quick?

    I am getting quite sick of IP trolls and patents that are so broadly phrased that they cover anything from toothpaste to nuclear physics. (disclaimer, I have not read the patent yet - but I am assuming that Sony carried out patent searches before building the Cell). And on that subject - why is the suite against Sony in particular not against the other members of the consortium that developed the Cell.

    I hope Sony sees them in court instead of folding.

  18. Well let's pick it apart. by Aladrin · · Score: 4, Informative

    1 - "a plurality of multi-access memory modules;"

    The PS3 does apparently use 4 RAM chips, but they don't appear to be multi-access. Elpida makes them, and I couldn't find ANY of their offerings that were 'multi-access'.

    2 - "2. The apparatus of claim 1 wherein the number of processors is equal to the number of multi-access memory modules."

    Ouch, pretty sure there's 7 cores to that Cell processor, and NOT 7 RAM chips. (There's 4.)

    6 - "including a plurality of multi-access memory modules,"

    Too bad, guys, you lost your lawsuit before you started. The others are all based on 1 or 6, and losing both of those kills the whole thing for sure.

    --
    "If you make people think they're thinking, they'll love you; But if you really make them think, they'll hate you." - DM
    1. Re:Well let's pick it apart. by TheRaven64 · · Score: 3, Informative

      The PS3 does apparently use 4 RAM chips, but they don't appear to be multi-access. Elpida makes them, and I couldn't find ANY of their offerings that were 'multi-access'. This is not about the PS3, it's about the Cell found in the PS3. The local memory of each SPU is multi-access; it can be accessed by the SPU itself and the DMA engines responsible for SPU to SPU transfer and SPU to or from main memory transfer.

      Ouch, pretty sure there's 7 cores to that Cell processor, and NOT 7 RAM chips. (There's 4.) Each SPU has 256KB of local memory. The number of SPUs is equal to the number of SPU-local memory modules.

      The claims you have listed all apply to the Cell. I haven't read the patent, so I don't know about the others.

      --
      I am TheRaven on Soylent News
  19. Re:Transputer? by maroberts · · Score: 3, Informative

    I was asking myself the same question.

    Transputers date back to the early/mid-'80s and patents therefore are out of date.

    IIRC, each transputer had its own memory; it didn't share it.

    --

    Donte Alistair Anderson Roberts - hi son!
    Karma: Chameleon

  20. I am no fan of Sony, but... by Bullfish · · Score: 3, Insightful

    I think we have to acknowledge once and for all that for too many companies the purpose of a patent is to hide in a blind and wait for someone who has brains to make a go of something similar enough and resources to sue rather than make a product of their own.

    It is sheer parasitism.

  21. Re:Use it or lose it by AndersOSU · · Score: 4, Insightful

    No, and no. There is a time honored tradition called the submarine patent, where you patent something, wait for someone else to develop it, wait some more for it to become profitable, and then sue. See NTP v. RIM for case in point, or read about the patent shenanigans surrounding the invention of the LASER (back when it was still capitalized).

    Now, I know that some of you are out there saying the enemy of my enemy... But really it is nonsense like this that causes the big dogs to file so many stupid patents. If they don't patent the stupid and obvious, someone else might - and then sue them for it.

    More companies need to see the light like IBM and realize that all patents after the first thousand or so are a liability, not an asset, and a cost, not an investment. Soon, after more suits like this start happening (look to the pharma and chemical industries) more major companies will start lobbying for patent reform, and then we might get something accomplished.

  22. Re:Infringes my "electronic brain" patent by TheRaven64 · · Score: 4, Funny

    I believe your patent, filed in 4004BC, expired 5991 years ago.

    --
    I am TheRaven on Soylent News
  23. Not like the Immersion rumble case by tepples · · Score: 2, Informative

    Parallel Processing receives an undisclosed amount of cash from MS. You mean like in the Immersion case, where Microsoft settled and licensed the methods and Nintendo turned out to have been licensing it all along? This case appears very different. Unlike the traditional 3-core symmetric multiprocessor in the Xbox 360, the Cell CPU is a 1-core CPU connected to several programmable DSPs, each of which has its own address space. This asymmetric NUMA scheme is what the first claim of the patent appears to describe.
  24. Re:Cray had prior art/implementation a decade earl by sjf · · Score: 4, Funny

    More to the point, can we ensure that those who modded this up never get mod points again ?

  25. Re:Impractical by russotto · · Score: 5, Informative

    I don't think there ever was an "impound and destroy" precedent in patent law.


    Polaroid v. Kodak. All of Kodak's infringing cameras had to be recalled and destroyed.

  26. having read the claims... by PatentMagus · · Score: 2, Insightful

    Recall that the claims define the patented invention. Always start reading at the claims, then look to the specification to determine what the claims mean (if necessary). Reading the abstract or specification gives little clue to what is actually patented.

    So, I read the claims.

    The only semi-unique thing there are the synchronization signals combined with standard MIMD architecture circa 1989. Yes, the transputer predates this patent and is likely to void it. There was a lot of other parallel 'puter research in the mid 80s including hyper cubes and other interconnection schemes. This is when "threading" was introduced into unix (versus the heavier process level stuff). They all used signals to report back that they were done, dead, or ready. The old math coprocessors in IBM PCs might be prior art.

    Sony can get this patent tossed, but is more likely to throw the plaintiff a settlement to make it go away. Patent litigation is very expensive. It's often cheaper to just settle.

    Why wait so long? The patent is almost expired! gotta use it before it's gone. Also, how much of the engineering level prior art still exists?

    Why ask for every infringing device to be impounded/destoryed? Why not? It's within the law to seek that remedy even if it can't be reasonably performed. Since it can't be performed, they'll take money.

    Oh yeah, the "impound 'em all" and "irreparable harm" stuff is boiler plate.

    --
    I am a lawyer, but not yours. Anything I tell you might be a total lie intended to benefit my clients at your expense.
  27. Just try it! by Brett+Buck · · Score: 2, Funny

    They can have my PS3 when they pry it from my cold, dead, hands!

  28. submarine patent by PatentMagus · · Score: 2, Informative

    Putting a patent away until widely infringed is not a submarine patent. A submarine patent is produced via continuation practice. Continuations, divisions, and continuations in part are available while an application is being processed. Processing ends with issuance, abandonment, ... Under the old rules, a new app could be filed with an extremely old priority date. It's a bit harder now.

    --
    I am a lawyer, but not yours. Anything I tell you might be a total lie intended to benefit my clients at your expense.
  29. Re:Infringes my "electronic brain" patent by Anonymous Coward · · Score: 3, Funny

    but the copyright for the software running the brain (the trully interesting stuff) is still in effect - remember liftime of author + 70 years.

  30. I have a completely fair solution. by seebs · · Score: 2, Funny

    How about this: Let's just award them the full profits Sony's realized from the PS3 up through the date of the lawsuit.

    Every penny.

    I think this would be an eminently fair solution, and I'm confident Sony would accept it.

    --
    My blog: http://www.seebs.net/log/ --- My iPhone/iPad app: http://www.seebs.net/seebsfrac/
  31. Re:Cray had prior art/implementation a decade earl by Stefanwulf · · Score: 2, Funny

    If only there were some way of modding the modders...it'd be like moderation, only meta.

  32. "Impounding and destorying" by nurb432 · · Score: 4, Funny

    One rule of suits: Demand the moon, negotiate for the sky, but be willing to accept the ground.

    --
    ---- Booth was a patriot ----
  33. Re:Impractical by nero4wolfe · · Score: 2, Interesting

    It is not correct that Kodak had to both recall and destroy their "infringing" cameras; there was just a recall. I had one of those Kodak cameras (as that was a much better camera than what Polaroid made at the time). All I had to do was remove the front nameplate and send it in for a refund. The only thing that "destroyed" what was left was that the film it used was no longer produced.

  34. Sony's response: by Shadow+Wrought · · Score: 2, Funny
    every infringing chip (and console) be 'impounded and destroyed'.

    Fine. But we're not helping you find either of the two we sold.

    --
    If brevity is the soul of wit, then how does one explain Twitter?
  35. Re:Irreparable Harm (properly formatted) by MadEE · · Score: 2, Informative

    Fair question. If you think about it, they aren't going to alienate Sony by their irrational demands; they are already filing a lawsuit, which is enough to alienate just about anybody.

    Lawsuits happen most businesses accept this fact and move on, simply getting sued is not something that most businesses take personally. Suing for unreasonable demands and publicizing the suit likely will.

    It's much more desirable to negotiate down from "give me the moon, and throw yourself on your own sword" to some reasonable compensation than to attempt a more rational-sounding "pay me $5 million, and ten cents per unit henceforth" approach which would get laughed off and negotiated down to $50 and a cup of coffee by Sony.

    Perhaps for the lawyer paid by the hour. Most lawyers don't go into these things blind, they have a good idea of their chances and how much litigation is going to cost and the trade-off point for settling. The ask for the sky strategy only drags things out and increases your costs paying lawyers to bounce offers off each other. The only time outrageous claims would be a positive is if they places a trade-off far higher then you expect and come back with a counter offer far higher then you really wanted. That virtually never happens and usually starting with a high but reasonable offer would yield similar results. Regardless it's fine an good (but may not be smart) to ask for the moon when negotiating outside of court. This ceased being negotiation when they filed a lawsuit. The lawyers will need to present this to a judge with a straight face and have quite real possibility of pissing of a judge or jury with the absurdity of damanges. It's a bad strategy all around.

  36. How many years? by Gription · · Score: 2

    So this was patented in 1991 and a patent is good for 17 years.
    They sure waited a long time to be "irreparably harmed...

  37. Re:Infringes my "electronic brain" patent by Anonymous Coward · · Score: 4, Funny

    The copyright expired in 1952, seven decades after Nietzsche pronounced God dead in 1882. The first commercially sold computer, UNIVAC I, was also delivered in 1952. Coincidence? I think not.

  38. Re:Impractical by networkBoy · · Score: 2, Interesting

    In fact, while I was in the camera business, I got people all the time bringing those Kodak Star cameras in to ask for film. When I explained why I had no film they would invariably ask how much it was worth so they could sell it. Whenever I said nothing they would get all pissed because they spent good money on the camera, and I would have to explain that they could still get a partial refund from Kodak, but no one would buy the camera because you can't get film.

    Since Polaroid makes money from film (the cameras are loss leaders) I never understood why they didn't work out a deal with Kodak by which they (Pol) would make film and Kodak could continue making the cameras, but was enjoined from the film side (obviously Kodak would shortly quit making the cameras on their own).
    -nB

    --
    whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
  39. Re:Infringes my "electronic brain" patent by drawfour · · Score: 4, Funny

    2 Peter 3:8 says, "With the Lord a day is like a thousand years, and a thousand years are like a day." I'm sure He opts for "a thousand years are like a day", so he's had the patent just over 6 days. He still has a LONG time left on His patent!

  40. Re:How would that work? by mr_matticus · · Score: 2, Insightful

    A court order requiring that businesses destroy what you yourself admit are usually unsafe items is proof that the human system is really useless.

    You play at the level of the field. Humanity doesn't set the bar very high for an enlightened legal system.

    Divorce yourself from the idea that patents shouldn't exist for a moment and accept that they do (you can return to your normal anti-IP machinations in a moment). Given that basic assumption, the conclusion is reasonable. If you enforce patents with a "don't do that!" notice, nothing happens. The company must either pay enough to be discouraged or it must be punished in some other way--destroying the unsold product and forced to mount a costly recall, for example. Capitalist companies respond more or less only to money; taking money away from them is the most effective way to get them to stop doing something wrong. In point of fact, strong consequences are a prerequisite to a functioning system, precisely contrary to your statement.

    Violating a controlling law, be it a safety law, import law, consumer protection law, or even a patent makes a product unfit for sale. That's true even if 99.9% of your cans of chili are perfectly good. You might find patents absurd, but I'll bet that there's a group of people who think consumer protection laws are absurd, too. They could make a compelling case about free markets and personal responsibility, but at the end of the day, consumer laws aren't going anywhere and neither are patents, and all for good reason.

  41. Sony Knew? by qzak · · Score: 2, Informative

    Apparently Sony referenced this patent in their application:

    "Oddly enough, Sony's own patent, filed in 2001 and issued in 2007, actually lists the 1991 patent as a citation. In other words, Sony's own patent lawyers have already seen the old patent and deemed it not to be a threat, and the U.S. Patent Office apparently agreed when it issued Sony the patent in June."

    http://news.digitaltrends.com/news/story/13725/ps3 s_cell_processor_faces_patent_challenge

    There may be very little ammo in this suit. /understatement