DMA initial 중 에러

chxooi의 이미지

DMA 코드를 보고 있습니다. 업체서 준 코드인데요...
코드는 아래와 같이 되어있습니다.(변수명 몇개 바꿨습니다. 숨기기위해..)
어쨌든 , 초기화 코드인데, 아래 부분에서 loading 시 seg fault 가 발생합니다.

정상적이라면 이 코드가 수행되고 나서 아래 pOutIface; 이외에 read/write 변수들이 수행되어야 합니다.

아래 코드를 실행하면...

printf(" test %x\n", prcIface->pOutIface); 이부분에서 죽습니다. segmentation fault 가 나는데요
이유를 모르겠네요....

0x00900000 이 더해지기전인 base address 는0x3c97c000 로 나옵니다.

즉 0x3c97c000+0x00900000 가 에러인것 같은데...

질문은 왜 0x00900000 이 더해져서 쓰이는것일까요?
두번째는 이 0x00900000 이 더해지면 왜 죽는걸까요 멀리가는 영역도 아닌것 같은데...

#define RC_IFACE_BUF_BASE 0x00900000

typedef struct RC_INTERFACE_Tag {

uint32_t pOutIface;
uint32_t pMailBoxAddress;
uint32_t prcFileInputIface;
uint32_t reserved[8];
.... 생략....

} RC_INTERFACE;

void *ConvertOffsetToAddress(Handle outhandle, uint32_t offset)
{
return (void *)(((uint8_t *)(outhandle->pChipMemBase))+offset );
}

int Dma_Init(Handle outhandle)
{
int rc = SUCCESS ;
volatile RC_INTERFACE *prcIface = ConvertOffsetToAddress(outhandle,RC_IFACE_BUF_BASE) ;
volatile MUX_OUT_IFACE *pMUX_OUT_IFACE ;

printf("outhandle->pChipMemBase %x\n", outhandle->pChipMemBase);
printf(" test %x\n", prcIface->pOutIface);

return rc ;
}

drinkme의 이미지

user 모드에서 physical memory에 접근이 안되지 않나요?

업체에서 어떤(?) code를 받으셨는지 몰라도,
linux의 user mode에서 동작하는 code를 받으신 것 같지는 않네요.
제 생각에는
업체에서 준 code를 기반으로 님께서 device driver를 만들어야 하지 않나 싶어요.

댓글 달기

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