[질문] USB 2.0 PCI card

recypace의 이미지

제 외장 하드를 붙이기 위해서 USB 2.0 PCI card를 하나 사려고

하는데요 혹시 쓰시는 것중에 잘 인식되고 잘 되는것좀 알려주세요.

가격도 천차만별이고 인식안되면 골치아파질 것 같아서 질문합니다.

여기나와 있는 글들을 보니 커널도 up도 해야 할 것 같은데

인식 시키시고 쓰시는 kernel version도 알려주시면 저에게는 많은

도움이 되겠습니다.

전 지금 2.4.20-8 입니다.

그럼. 감사 :-)

bushi의 이미지

후... 좀 된 글이지만, black list 라도 만들어보자는 뜻에서...

(주)강원전자 NMU202, USB2.0 2+1 ports PCI Card

NEC 칩셋 사용합니다만, fedora 7(linux-2.6.22) 에서 제대로 잡히지 않습니다.
잡히지 않는 원인은 PCI class 0x0C02 로 읽히기 때문입니다. (USB 의 PCI class 는 0x0C03 입니다.)

0x0C02 는 SSA(Serial Storage Architecture) 의 PCI class 이고, http://en.wikipedia.org/wiki/Serial_Storage_Architecture 참고.

커널 소스 중 ohci-pci.c 를 보면

static const struct pci_device_id pci_ids [] = { {
   /* handle any USB OHCI controller */
   PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_OHCI, ~0),
   .driver_data = (unsigned long) &ohci_pci_hc_driver,
   }, { /* end: all zeroes */ }
};

처럼 되어 있습니다. class 0x0c03, prog-if 0x10 를 기다립니다.
소스를 고쳐서 잡아볼까 했는데, 귀차니즘에 카드를 그냥 반납했습니다.

혹시 고쳐서 시도해보실 분은...

static const struct pci_device_id pci_ids [] = { {
   /* handle any USB OHCI controller */
   PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_USB_OHCI, ~0),
   .driver_data = (unsigned long) &ohci_pci_hc_driver,
   }, {
     .class = 0x0c0210,   .class_mask = ~0,
     .vendor = PCI_VENDOR_ID_NEC,    .device = 0x0034,
     .subvendor = PCI_VENDOR_ID_NEC, .subdevice = PCI_DEVICE_ID_NEC_USB,
     .driver_data = (unsigned long) &ohci_pci_hc_driver,
   }, { /* end: all zeroes */ }
};

정도로 시작해보세요.

OTL

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.