mk712.c (또는 기타 마우스관련) 소스중 마우스 에뮬레이션은 누

큰생각의 이미지

커널버전: 2.4.20

mk712.c 터치스크린 소스를 보면요..
소스 중 아래에 적은 부분이 터치 좌표를 얻어서 마지막으로
X,Y 좌표를 전달하는 부분인 것 같은데요..
wake_up_interruptible 하면 도대체 어떤 프로세스가
잠자다가 깨서 X,Y 를 전달 받아서 실행하는지 도통 몰겠네요..

//함수 mk712_output_packet() 중 일부  
if (head != queue->tail)   //좌표 변화가 있으면 
{
      queue->head = head;
       kill_fasync(&queue->fasync, SIGIO, POLL_IN);
       wake_up_interruptible(&queue->proc_list);
}

다른 Mouse 관련 소스들 전부다 이런식이던데요..
X,Y 전달하는 부분도 없고 Mouse 관련 Process 콜도 없고
queue 등록과 상관 있는것 같은데 어떻게 돌아가는지 몰겠습니다.
조금만 도와 주십시오..

소스 전체를 보실려면 : http://lxr.linux.no/source/drivers/char/mk712.c?v=2.4.20

flyduck의 이미지

static ssize_t mk712_read(struct file *file, char *buffer,
              size_t count, loff_t *pos)
{
    DECLARE_WAITQUEUE(wait, current);
    ssize_t bytes_read = 0;
    struct mk712_packet p;

    /* wait for an event */
    if (queue_empty()) {
        if (file->f_flags & O_NONBLOCK)
            return -EAGAIN;
        add_wait_queue(&queue->proc_list, &wait);
repeat:

read()나 poll()을 호출해서 잠이든 프로세스가 있다면 그 프로세스가 깨어납니다. 마우스가 움직이면 드라이버는 이를 내부 버퍼에 저장을 하고, read()를 통해 프로그램은 이 데이터를 읽어갑니다.

Freedom is another word for nothing left to lose,
Nothing doesn't mean nothing if it ain't free.

큰생각의 이미지

답글 감사합니다.

아 Read 에서 Pending 된 프로세스가 깨어서 가지고 가는겁니까?
전 단순히 Read 는 User Application 에서만 Call 되어지는 거라 생각했는데..

그러면 Mouse Event 처리 프로그램(드라이버? 데몬?) 이 Read 를 Call을 해서 값을 가지고 간다는 말씀이군요.. 이해가 됩니다. 감사..

근데 여기서 또하나의 의문점은 Read 를 Call 하는 놈이 누구인지?
또 무슨 등록을 했길래 Call 하도록 만들었는지?
(그냥 irq등록 /misc_reg~ 밖에 한것이 없는데 misc_reg~ 쫓아가봐도
이해가 잘 안되네요..)

간단히 제가 misc_reg 로 등록하고 테스트 해보면 Read 를 Call 하는
Mouse 처리 프로세스 그 무엇도 없습니다..

(참고로 Win2kxp 경우에는 Mouse Class 로 등록하면
MouseClass 가 Callaback 함수 포인터를 드라이버에 넘겨주거든요 그래서 그걸 호출하면 되는 절차를 가지고 있습니다.)

조금만 더 도와주시면 감사하겠습니다.. 꾸벅 ㅡㅡ;

리눅스 정복의 그날은 언제쯤..

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.