LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 01-28-2006, 04:19 PM   #1
CiScOh4x0r
LQ Newbie
 
Registered: May 2005
Location: England
Distribution: Gentoo
Posts: 15

Rep: Reputation: 0
Question CARD READER HP pavilion dv1000


hi... well... my distro is: Ubuntu, i have installed it in my laptop HP pavilion dv1000 but it does not detect my card reader and i need to get some pictures in my computer... so how can i install it?? thanks...
 
Old 01-28-2006, 04:43 PM   #2
seelenbild28
Member
 
Registered: Oct 2005
Location: Germany, Berlin
Distribution: SuSE Linux 9.1/9.2/9.3/10.0/10.1, openSuSE 10.2, 10.3, Slackware, Debian, Redhat, BSD
Posts: 315

Rep: Reputation: 30
card reader

first tell us which type of card reader you have. therfore you should login as root ("su -") and type "lspci -v". please post the output here, then we will see, what we can do. the problem will be, if you have a sd card reader it will probably never ever be supported by linux since the sd cards have a special license or something like that which will not give linux users and developers the opportunity to develop drivers for these cards. if you have a mmc or other cards, there is some chance to get it working. you could also have a look at "www.tuxmobil.??", try google.

hope this helps for the first seconds.

ps.: i use a usb-cable to put my pictures from the digicam to the hard disk.
 
Old 01-28-2006, 04:57 PM   #3
CiScOh4x0r
LQ Newbie
 
Registered: May 2005
Location: England
Distribution: Gentoo
Posts: 15

Original Poster
Rep: Reputation: 0
hello again... it saids this:

0000:02:09.3 Unknown mass storage controller: Texas Instruments: Unknown device 8033
Subsystem: Hewlett-Packard Company: Unknown device 3080
Flags: bus master, medium devsel, latency 64, IRQ 11
Memory at e0204000 (32-bit, non-prefetchable) [size=8K]
 
Old 01-28-2006, 05:03 PM   #4
seelenbild28
Member
 
Registered: Oct 2005
Location: Germany, Berlin
Distribution: SuSE Linux 9.1/9.2/9.3/10.0/10.1, openSuSE 10.2, 10.3, Slackware, Debian, Redhat, BSD
Posts: 315

Rep: Reputation: 30
Texas instruments card reader

seems to be the same i have. up to now there is no support available for that card reader - in first instance also not from texas instruments. am I right that this is a SD card reader? If so, no chance, try usb, that's all I can tell you.
 
Old 01-28-2006, 05:05 PM   #5
CiScOh4x0r
LQ Newbie
 
Registered: May 2005
Location: England
Distribution: Gentoo
Posts: 15

Original Poster
Rep: Reputation: 0
yes, it is SD card reader... ok,so i cannot use it, great i will try with the usb! thanks....
 
Old 01-28-2006, 05:07 PM   #6
seelenbild28
Member
 
Registered: Oct 2005
Location: Germany, Berlin
Distribution: SuSE Linux 9.1/9.2/9.3/10.0/10.1, openSuSE 10.2, 10.3, Slackware, Debian, Redhat, BSD
Posts: 315

Rep: Reputation: 30
sc card

that's what I found out for this Texas thing. But you can search on your own in google. try also www.tuxmobil.org. there you find a lot of interesting links, hints etc. for laptops, card readers etc.

sorry for that first bad answer...
 
Old 01-28-2006, 05:20 PM   #7
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
The tuxmobil link looks promising. On my HP Pavilion, the computer came with a small adapter that you can plug into the USB port to use an SD card.
 
Old 10-09-2007, 11:36 AM   #8
sephirothx
LQ Newbie
 
Registered: Oct 2007
Posts: 1

Rep: Reputation: 0
Enable card reader on DV1000 - Success !!!

Hey guys... for those you need to enable the card reader on Dv1000 you have to do as following:

$ lspci |grep 'FlashMedia'

Result:
02:09.3 Mass storage controller: Texas Instruments PCIxx21 Integrated FlashMedia Controller

We need those numbers to verify the bus access (could change from one device to another).

Create a file
$sudo nano /etc/init.d/sdhci

copy and paste the next script.

#!/bin/sh

# Get lsb functions
. /lib/lsb/init-functions

case "$1" in

start)
log_begin_msg "Configuring card reader"

modprobe fakephp || return 1
setpci -s 02:09.3 86.b=90
setpci -s 02:09.3 4c.b=02 # FlashMedia SD disable
setpci -s 02:09.3 04.b=06 # SDHCI Mem+ BusMaster+
setpci -s 02:09.3 88.b=01 # SDHCI DMA enable
modprobe sdhci || return 1

log_end_msg $?
;;

stop)
log_begin_msg "Shutting down card reader"

modprobe -r sdhci
lsmod | grep -q sdhci && return 1
setpci -s 02:09.3 88.b=00 # SDHCI DMA disable
setpci -s 02:09.3 04.b=07 # SDHCI Mem- BusMaster-
setpci -s 02:09.3 4c.b=00 # FlashMedia SD enable
setpci -s 02:09.3 86.b=d0
modprobe -r fakephp

log_end_msg $?
;;

*)
log_success_msg "Usage: /etc/init.d/sdhci start|stop"
exit 1
;;
esac

exit 0


Save the file and check for permisions
$sudo chmod 0755 /etc/init.d/sdhci
$sudo chown root:root /etc/init.d/sdhci

Initialize the device
$sudo /etc/init.d/sdhci start

And make it starts on every boot
$ sudo update-rc.d sdhci defaults

and thats all folks !!!!
Greetings....

Last edited by sephirothx; 10-09-2007 at 11:38 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
HP Pavilion dv1000 series danludvic Linux - Laptop and Netbook 9 01-17-2007 11:14 PM
HowTo: HP Pavilion dv1000 Display resolution Ramanan Linux - Laptop and Netbook 3 11-24-2006 01:36 PM
debian VS HP pavilion dv1071ea or dv1000 series wael_nasreddine Debian 20 09-10-2006 10:41 PM
linux for HP Pavilion dv1000 bullwinkle Linux - Laptop and Netbook 2 10-10-2005 12:53 PM
HP pavilion dv1071ea 6 in 1 card reader wael_nasreddine Linux - Hardware 6 05-02-2005 02:58 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 09:38 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration