request_irq관련 질문 올립니다.

getfeus의 이미지

모듈의 소스는 다음과 같습니다.(31번 벡터에 대한 irq요청 발생시 곧장 커널 메시지를 쏴주고 끝나는, 매우 간단한 코드 입니다.)

#include <linux/module.h>
#include <linux/init.h>
#include <linux/interrupt.h>
MODULE_LICENSE("GPL");
 
 
irqreturn_t short_interrupt(int irq, void *dev_id)
{
	printk("Handle IRQ Success\n");
	return IRQ_HANDLED;
}
 
 
static int __init setup_custom_irq(void)
{
	int short_irq, result;
	short_irq=31;
 
	if(short_irq>=0)
		result = request_irq(short_irq, short_interrupt, IRQF_DISABLED, "short", NULL);
		if(result)
		{
			printk(KERN_INFO "short: can't get assigned irq 31, Return Val is %i\n",result);
			short_irq = -1;
			return -EIO; 
		}
		else
		{
			printk(KERN_INFO "Setup IRQ success!!!\n");
			return IRQ_HANDLED;
		}
}
 
 
static void __exit hello_exit(void)
{
	printk(KERN_INFO "Goodbye World\n");
}
 
module_init(setup_custom_irq);
 
module_exit(hello_exit);

다음은, Makefile입니다.

ifneq ($(KERNELRELEASE),)
	obj-m := module_test.o
else
	KERNELDIR ?= /lib/modules/$(shell uname -r)/build
	PWD := $(shell pwd)
default:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean:
	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
endif

insmod시 발생하는, 코드 내의 오류 번호 확인을 위한 부분에서 확인 되는 리턴값은 -22 입니다. sudo -s 로 루트로 돌린 후 작업 하였습니다.

인터럽트 번호를 31에서 수정 해 보아도 마찬가지 입니다.(31, 32, 기타등등)

혹시 이 코드의 어디에 문제가 있는지... 알고 계시는 분 계시면 답변좀 부탁 드리겠습니다.

감사합니다.

gurugio의 이미지

request_ire 소스를 찾아봤더니 다음과 같은 경우에 -EINVAL이 반환됩니다.

if ((irqflags & IRQF_SHARED) && !dev_id)
1361 return -EINVAL;
1362
1363 desc = irq_to_desc(irq);
1364 if (!desc)
1365 return -EINVAL;
1366
1367 if (!irq_settings_can_request(desc) ||
1368 WARN_ON(irq_settings_is_per_cpu_devid(desc)))
1369 return -EINVAL;

중간에 irq_to_desc에서 문제가 생기는것 같습니다.
31,32 irq가 활성화된 irq인가요?
제 pc에서 /proc/interrupts를 보니 31,32는 활성화가 안된걸로 보입니다.

irq를 활성화하려면 다른 작업이 필요한데 제가 해본지가 오래되서 기억이 안나네요.

getfeus의 이미지

cat /proc/interrupts의 결과, 병렬포트로 사용중이라고 표시 되는 7을 인수로 넣어 코드를 수정 하여 보았습니다.

이번엔, return 값이 -16이 되었네요.

좀더 원인을 찾아봐야 겠습니다.

rgbi3307의 이미지

저도 좀 찾아 봤는데, 이미 해결한 문서가 있군요.

http://kldp.org/node/104464

참고하시면 도움이 될듯...

From:
*알지비 (메일: rgbi3307(at)nate.com)
*커널연구회(http://www.kernel.bz/) 내용물들을 만들고 있음.
*((공부해서 남을 주려면 남보다 더많이 연구해야함.))

댓글 달기

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