WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Tinycore touch screen/ use on a smart phone  (Read 4799 times)

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Tinycore touch screen/ use on a smart phone
« on: June 22, 2011, 11:51:46 AM »
Before I start I just want to say thanks to everyone who helped with my problems a few weeks ago.

Alright like the subject states I was wondering if Tinycore has any touch screen extensions and other software to be used as the OS for a smart phone. I'm willing to bet that this has been thought of before but I couldn't find anything on touch screen support after a long and boring Google search.

I thought that a few modifications would make Tinycore an excellent OS for smart phones. Any thoughts on this would be appreciated.

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Tinycore touch screen/ use on a smart phone
« Reply #1 on: June 22, 2011, 12:46:01 PM »
Smartphones don't run 486 processors.

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tinycore touch screen/ use on a smart phone
« Reply #2 on: June 22, 2011, 12:47:33 PM »
Assuming Intel actually makes a x86 smartphone anytime soon ;) We do have normal Xorg support for touch screens, and many of them can emulate a normal mouse.
The only barriers that can stop you are the ones you create yourself.

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #3 on: June 24, 2011, 11:40:44 AM »
I can imagine it would be very difficult to create a driver for those mobile processors... Might be slightly easier if I knew any current programming languages though :-[

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #4 on: June 24, 2011, 11:43:06 AM »
Actually I think AMD is trying to make some small CPUs for mobile devices like tablets at least. Intel might as well.

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Tinycore touch screen/ use on a smart phone
« Reply #5 on: June 24, 2011, 11:47:14 AM »
X86 devices use too much power.

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #6 on: June 25, 2011, 09:13:01 PM »
Is it possible to build an ARM processor that can run x86 code? Even with a speed penalty, just to have the feature would solve many problems if an ARM could emulate x86.

I have been looking up just-in-time compilers and supposedly they are capable of doing this but any speed penalty on today's ARM processors would hurt considering most of them are already pretty slow compared to power-starving x86 processors.
« Last Edit: June 25, 2011, 09:32:35 PM by blazorthon »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: Tinycore touch screen/ use on a smart phone
« Reply #7 on: June 25, 2011, 09:30:42 PM »
Hi blazorthon

Quote
Is it possible to build an ARM processor that can run x86 code?
It doesn't work that way. An ARM processor has one type of instruction set and an X86 has another.

For what you are talking about you would need to recompile the kernel plus drivers and applications
to run on the ARM. Recompiling for ARM has come up several times on the forum and is no simple task.
To the best of my knowledge, no one here has reported success.

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #8 on: June 25, 2011, 09:35:33 PM »
I realize they are two different architectures that use different instruction sets. I don't mean natively run the code but maybe a workaround with a big speed penalty. just making it possible would be enough even with the speed problems because ARM processors are getting faster at a greater pace than x86 and may catch up in speed over the next few years.

like you said the porting of a program would be better but if this works it could help in the short term. ARM may take over x86 as the primary CPU architecture within the next decade or two
« Last Edit: June 25, 2011, 09:40:14 PM by blazorthon »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: Tinycore touch screen/ use on a smart phone
« Reply #9 on: June 25, 2011, 09:49:08 PM »
Hi blazorthon
And with increased speed comes increased power. When you increases the clock frequency to a CPU
or any logic circuit it will consume more current due to switching losses.

Sounds like you are looking for an X86 emulator that runs on the ARM architecture. Besides the speed
penalty you would also incur the storage space penalty for the emulation software itself.

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #10 on: June 25, 2011, 10:14:13 PM »
An ARM running at similar speeds and threads to an x86 uses less power than the x86. That an ARM @ 4GHz use more power than one @ 1GHz isn't as important as that the ARM @4GHz may use less power than an x86 @ 2GHz. I admit to be just throwing numbers here but ARM is significantly more power-friendly than x86.

I know that ALL software takes up storage space as does virtually everything on the computer.

I would like to be able to run an x86 program on an ARM chip. From what little I've read a just-in-time program may do the trick.
« Last Edit: June 25, 2011, 10:15:51 PM by blazorthon »

Offline curaga

  • Administrator
  • Hero Member
  • *****
  • Posts: 10957
Re: Tinycore touch screen/ use on a smart phone
« Reply #11 on: June 26, 2011, 12:47:00 AM »
You can do that, but it's slow as damn on an already slow as damn cpu. Qemu.

Existing example - darwine. Qemu + wine on a PPC mac could run x86 windows apps.


Anyway, as mentioned before, the problem with ARM is huge fragmentation. There still isn't a single bootloader or a single kernel that can boot on all ARM, there isn't a single graphics standard or an open-source gfx driver, and even the cpus vary enough to cause huge performance penalties via targeting. If you want to run on more cpus, you'll be over 50% slower on the latest ARMs (meaningless number, just as an example of the magnitude we're talking about).
The only barriers that can stop you are the ones you create yourself.

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: Tinycore touch screen/ use on a smart phone
« Reply #12 on: June 26, 2011, 09:03:57 AM »
Just run the ARM linux that is alrady available for your device, if there is one.

Offline blazorthon

  • Newbie
  • *
  • Posts: 11
Re: Tinycore touch screen/ use on a smart phone
« Reply #13 on: June 26, 2011, 10:25:38 AM »
You can do that, but it's slow as damn on an already slow as damn cpu. Qemu.

Existing example - darwine. Qemu + wine on a PPC mac could run x86 windows apps.


Anyway, as mentioned before, the problem with ARM is huge fragmentation. There still isn't a single bootloader or a single kernel that can boot on all ARM, there isn't a single graphics standard or an open-source gfx driver, and even the cpus vary enough to cause huge performance penalties via targeting. If you want to run on more cpus, you'll be over 50% slower on the latest ARMs (meaningless number, just as an example of the magnitude we're talking about).

I'm not worried about how slow it is nearly as much as it just working. Does tinycore take advantage of multiple cores?

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: Tinycore touch screen/ use on a smart phone
« Reply #14 on: June 26, 2011, 10:27:12 AM »
I'm not worried about how slow it is nearly as much as it just working. Does tinycore take advantage of multiple cores?

Yes.

BTW, it has nothing to do with TC, it is up to the Kernel.
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."