Welcome to Tech Support Forum home to more then 136,000 problems solved. Issues have included: Spyware, Malware, Virus Issues, Windows, Microsoft, Linux, Networking, Security, Hardware, and Gaming Getting your problem solved is as easy as:
1. Registering for a free account
2. Asking your question
3. Receiving an answer

Registered members:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* See fewer ads.
* And much more..

 



Want to know how to post a question? click here Having problems with spyware and pop-ups? First Steps
Go Back   Tech Support Forum > Hardware Support > Removable Media Drives
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Removable Media Drives Support Forum for removable media; Quantum, Iomega, Sony, HP

Reply
 
LinkBack Thread Tools
Old 09-14-2007, 11:37 PM   #1 (permalink)
Registered User
 
Join Date: Sep 2007
Posts: 1
OS: xp


Question Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Hi all, i have got a problem with this cd/dvd combo drive (SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device), it is recognised as being working properly in the device manager. However it does not read any cd/dvd and recognise them as a blank cd (except the windows xp installation cd). I have tried finding sony updates for this but no luck. Can anyone suggests some solutions or helpful links towards this problem thx.
CPyou is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Important Information
Join the #1 Tech Support Forum Today - It's Totally Free!

TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free.

Join TechSupportforum.com Today - Click Here

Old 01-29-2008, 01:20 PM   #2 (permalink)
Registered User
 
Join Date: Jan 2008
Posts: 1
OS: winxp sp2


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

I found this post using google, searching for the EXACT SAME PROBLEM...

My symptoms are exactly the same as yours, and I've had ZERO luck finding any solution....

Although, the main difference is, my DVD drive is installed in the "docking bay" accessory that came with my Sony Vaio, so it's kinda "internal/external" however way you want to look at it.....

I removed the drive from the dock, and its a toshiba SD-C2502 DVD-ROM and appears to be without defects on the outside...

The device manager shows the drive as a SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device.....

I've searched online using every different string I can think of, hoping to get some scrap of information that might lead to a solution...

If you got yours to work, please share the fix, since I'm stuck at this point...

Thanks in advance for any help fixing this one!

Bogs

Last edited by BogSpores; 01-29-2008 at 01:28 PM.
BogSpores is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 03-06-2008, 12:45 AM   #3 (permalink)
Registered User
 
Join Date: Mar 2008
Posts: 1
OS: win xp sp2


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

did you ever find this fix?
anointedchild20 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-24-2008, 05:38 PM   #4 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 5
OS: XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

I think I know what the issue is.

It looks like the Linux 1394 FW stack does not understand multiple LUN directories in the UNIT Directory that the Sony exports in its ROM.

The proof is left as an exercise for the student :-)

If I manage to fix the problem I will post it upstream to the kernel, but it will be later than 2.6.25 ...
realrichardshar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-24-2008, 07:00 PM   #5 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 5
OS: XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Found the bug. There is an off-by-one problem in the firewire sbp2 code (fw-sbp2.c) when handling a LUN Directory in the ROM.

Will post a patch against 2.6.25.4 soon.

However, that might not be the end of the story ...
realrichardshar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-24-2008, 07:14 PM   #6 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 5
OS: XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Here is the patch:

diff -u fw-sbp2.c.orig fw-sbp2.c
--- fw-sbp2.c.orig 2008-06-24 13:34:52.000000000 -0400
+++ fw-sbp2.c 2008-06-24 13:33:30.000000000 -0400
@@ -1049,7 +1049,8 @@
break;

case SBP2_CSR_LOGICAL_UNIT_DIRECTORY:
- if (sbp2_scan_logical_unit_dir(tgt, ci.p + value) < 0)
+ /* Adjust for the incrememt in the iterator */
+ if (sbp2_scan_logical_unit_dir(tgt, ci.p + value - 1) < 0)
return -ENOMEM;
break;
}
---------------------------
This is what you should see in /var/log/messages after applying the fix:

Jun 24 13:24:27 testserver kernel: firewire_sbp2: fw1.0: logged in to LUN 0000 (0 retries)
Jun 24 13:24:27 testserver kernel: scsi 6:0:0:0: CD-ROM MATSHITA DVD-RAM SW-9584 B100 PQ: 0 ANSI: 0
Jun 24 13:24:27 testserver kernel: scsi 6:0:0:0: Attached scsi generic sg0 type 5
Jun 24 13:24:27 testserver kernel: firewire_sbp2: fw1.0: logged in to LUN 0002 (0 retries)
Jun 24 13:24:27 testserver kernel: scsi 6:0:0:2: Medium Changer Sony VAIOChanger1 0100 PQ: 0 ANSI: 3
Jun 24 13:24:27 testserver kernel: scsi 6:0:0:2: Attached scsi generic sg1 type 8
Jun 24 13:24:27 testserver kernel: Driver 'sr' needs updating - please use bus_type methods
Jun 24 13:24:27 testserver kernel: sr0: scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
realrichardshar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 06-24-2008, 07:30 PM   #7 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 5
OS: XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Well, it works now:

./mtx -f /dev/sg1 altres status | more
Storage Changer /dev/sg1:1 Drives, 201 Slots ( 1 Import/Export )
Data Transfer Element 0:Empty
Storage Element 1:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 2:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 3:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 4:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 5:Full
Storage Element 6:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 7:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 8:Full :VolumeTag= :Alterna
teVolumeTag=
Storage Element 9:Full :VolumeTag= :Alterna
teVolumeTag=

My work here is finished.
realrichardshar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-22-2008, 03:31 PM   #8 (permalink)
Registered User
 
Join Date: Jul 2008
Posts: 3
OS: windows XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Hi, I have the same problem with sony i.link CD-RW DVD-ROM Drive IEEE 1394 SBP2 Device.
However, I don't understand how to aplly the patch.
Can you explain it to me?
Do I have to write all the information you gave on the comand prompt?
Thanks!
cocaduarte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-23-2008, 12:54 AM   #9 (permalink)
Registered User
 
Join Date: Jun 2008
Posts: 5
OS: XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

If you have no experience patching the kernel and rebuilding it, you should probably not bother.

I think the fix is in 2.6.26, but if you can't use that version of the kernel, you can manually apply the patch since it adds one comment line and changes one other line in fw-sbp2.c.

The change is to add the string " - 1" in a single file. How hard can it be to make that change.

Of course, as I say, if you are not familiar with building the kernel from source you might consider getting someone more experienced to do the work for you.
realrichardshar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 07-29-2008, 04:53 PM   #10 (permalink)
Registered User
 
Join Date: Jul 2008
Posts: 3
OS: windows XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

Finally, I solved the problem with a different strategy:
I used the "Application recovery Cd" that came with my Vaio PCG-R505EL, to re-install the CD-Wriring module by Sonic Stage after unistalling it.
It works!

Hope this solution helps someone else.
Thanks anyway,
cocaduarte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-20-2008, 05:33 AM   #11 (permalink)
Registered User
 
Join Date: Aug 2008
Posts: 1
OS: win xp


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

In response to last posting....how did you use the application recovery cd if the ilink drive won't work?
bradbri is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-21-2008, 08:38 AM   #12 (permalink)
Registered User
 
Join Date: Jul 2008
Posts: 3
OS: windows XP


Re: Problem: SONY i.LINK CD-RW DVD ROM DRIVE IEEE 1394 SBP2 Device

In my case, particularlly, the drive did read CDs of instalation and other, but did not recognize CD-R, home recorded CDs and wasn´t able to record new CDs, the recording property was gone.
cocaduarte is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

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 On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 01:09 PM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85