OMAPL138如何在Linux下使用EDMA3驱动 - OMAP-L138 - 嵌入式开发者社区 - 51ele.net
设为首页收藏本站

嵌入式开发者社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 8724|回复: 0
打印 上一主题 下一主题

[未解决] OMAPL138如何在Linux下使用EDMA3驱动

[复制链接]

5

主题

11

帖子

73

积分

注册会员

Rank: 2

积分
73
跳转到指定楼层
楼主
发表于 2018-1-30 11:01:43 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 yyj 于 2018-1-30 11:01 编辑
' W! E/ R0 ]) a+ R3 j
  1. [code]EDMA sample test application0 Y* F4 v6 J3 r* i. q
  2. /*
    " K$ Z' S  S6 o. t8 n6 M
  3. * edma_test.c
    ( W. ]! X/ f. x- x. ~! o
  4. *. [, l$ E, @: r
  5. * brief  EDMA3 Test Application
    , p4 ?4 Y/ f. R" q2 S8 h
  6. *. s7 t! U! a: r: H& _) ]5 ^" P
  7. *   This file contains EDMA3 Test code.
    5 C& l: P- ^* o* P
  8. *& S' P+ s" N2 O8 q+ U# F
  9. *   NOTE: THIS FILE IS PROVIDED ONLY FOR INITIAL DEMO RELEASE AND MAY BE
    ) Y, H7 \: A8 i2 {! ^
  10. *         REMOVED AFTER THE DEMO OR THE CONTENTS OF THIS FILE ARE SUBJECT
    - `+ W5 p7 l; |; t8 V' q
  11. *         TO CHANGE.
    * i; p0 f( g2 R; T  n. A3 v0 c" @5 e
  12. *
    8 x" s& B4 v) V8 a! d- m8 n9 l
  13. * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/0 z& l# a' |; K& l( d
  14. *
      @7 b# S* P$ \& t
  15. * This program is free software; you can redistribute it and/or1 a3 X1 j7 _: g* s  R) ~9 G  [
  16. * modify it under the terms of the GNU General Public License as
    8 ^0 C9 g. G( ~3 s1 X
  17. * published by the Free Software Foundation version 2.
    ( W  m# e1 ^3 ^+ P$ ]8 O
  18. *
    $ P* ?9 M3 C3 l( [/ S- `
  19. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
    & R- H; N) T$ H
  20. * kind, whether express or implied; without even the implied warranty; L  _5 `& t% s# y0 r% q/ R) B+ j3 Y
  21. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the9 P% u; O% T- }: A% ~" V
  22. * GNU General Public License for more details.3 D5 u2 s( @9 s0 M$ J( f1 y
  23. */* L$ L! F3 q3 z/ Q" F6 `8 f
  24. 0 [# [4 r' c' o' q9 x
  25. #include <linux/module.h>9 f6 T9 ?. X$ K9 U% z
  26. #include <linux/init.h>: Y5 j0 J( y. a+ z. S+ K4 u! j
  27. #include <linux/errno.h>
    * @* r7 q/ M; b- i% J
  28. #include <linux/types.h>
    2 D9 a; T7 @# k5 l3 S
  29. #include <linux/interrupt.h>
    . ?9 X! l( K. d2 X1 `$ a
  30. #include <asm/io.h>
      z6 Y8 t8 E. ?9 M" N
  31. #include <linux/moduleparam.h>! W% Q6 b+ P. K
  32. #include <linux/sysctl.h>9 x- x" J. R. {  c: X  ^
  33. #include <linux/mm.h>$ Q; c$ r; w2 H, I$ y5 Y. W
  34. #include <linux/dma-mapping.h>
    2 q; B1 K- r: p2 w$ o6 n) a4 Z

  35. 0 N! \6 ^* `5 E( t8 p6 I
  36. #include <mach/memory.h>+ E; _" z; q6 g0 g( B0 l
  37. #include <mach/hardware.h>  w) F' d; M. I& P) z2 `) M+ Y
  38. #include <mach/irqs.h>, L- r) f. s. h3 `
  39. #include <asm/hardware/edma.h>
    4 v' N- D6 [( n" h& `# z, M8 G# K

  40. $ ?  R/ A7 s+ L5 n: o. N9 ^. J
  41. #undef EDMA3_DEBUG7 Z0 K7 G! D' H% X/ P8 S9 H
  42. /*#define EDMA3_DEBUG*/
    " z# o/ k6 O' O9 i4 j* P% Q0 F5 T
  43. 0 H* `& Q4 |, U) e" t  Q# x
  44. #ifdef EDMA3_DEBUG
    - h6 M6 ]0 G0 I+ k" F* `* T9 `
  45. #define DMA_PRINTK(ARGS...)  printk(KERN_INFO "<%s>: ",__FUNCTION__);printk(ARGS)
    / x% C  i, z5 [4 s5 ~
  46. #define DMA_FN_IN printk(KERN_INFO "[%s]: start\n", __FUNCTION__)
      y, w/ x7 n& e3 i$ N
  47. #define DMA_FN_OUT printk(KERN_INFO "[%s]: end\n",__FUNCTION__). [; ~) J0 L( s
  48. #else. `2 `) ^5 Q' v, l1 H% a9 F$ @  x
  49. #define DMA_PRINTK( x... )1 S" A( g, ?2 |+ Z8 _+ Z
  50. #define DMA_FN_IN
    4 e, J: F: D2 O' i
  51. #define DMA_FN_OUT
    . H- A( g( V; Z- i: Y
  52. #endif: _- `2 a3 _- F; z
  53. & I! |' y7 E: T4 N
  54. #define MAX_DMA_TRANSFER_IN_BYTES   (32768)8 _7 E, _4 k( ~* o* F" D, X
  55. #define STATIC_SHIFT                3
    # Q5 @9 ]3 \; O; b9 B9 U: T
  56. #define TCINTEN_SHIFT               20
    . s  F/ ?( l5 ^" L! w( M/ @
  57. #define ITCINTEN_SHIFT              21
    ) a) e8 F4 F3 K. e
  58. #define TCCHEN_SHIFT                22: H; W5 }/ k, @5 V- E1 M. [3 z5 W
  59. #define ITCCHEN_SHIFT               230 h2 g; Q5 J8 R; j: e7 _& p  _7 I$ `
  60. 7 J$ C2 B) D5 w1 D' U; a
  61. static volatile int irqraised1 = 0;
    7 f& b7 [; l' X: x7 }" W- W. y
  62. static volatile int irqraised2 = 0;
    8 a0 c- w7 U! q& m+ a  }
  63. 5 Z. Y4 P* a5 g5 i
  64. int edma3_memtomemcpytest_dma(int acnt, int bcnt, int ccnt, int sync_mode, int event_queue);
    & c! A; ?8 \! P( t+ t- Y
  65. int edma3_memtomemcpytest_dma_link(int acnt, int bcnt, int ccnt, int sync_mode, int event_queue);
    + a) S, f/ t- v+ F8 k! H6 w
  66. int edma3_memtomemcpytest_dma_chain(int acnt, int bcnt, int ccnt, int sync_mode, int event_queue);, s' Z" Z" P9 R
  67. 0 i1 \9 C3 v4 R% D. d
  68. dma_addr_t dmaphyssrc1 = 0;
    " {; X) w9 P/ U  P+ o* H+ m
  69. dma_addr_t dmaphyssrc2 = 0;
    & u* _0 z$ K- z
  70. dma_addr_t dmaphysdest1 = 0;
    / A" v: m* a  c0 L
  71. dma_addr_t dmaphysdest2 = 0;6 \$ v3 x  T) ?/ o: J# C' e7 y& z
  72. - P6 X  W( E/ ~7 I/ H8 C5 N
  73. char *dmabufsrc1 = NULL;
    + t+ J( O7 [) r/ v( {
  74. char *dmabufsrc2 = NULL;
    . n) Q! l7 J1 M% ?5 H
  75. char *dmabufdest1 = NULL;$ M4 f# ~5 ^7 b
  76. char *dmabufdest2 = NULL;
    " q5 ?) D3 K& V3 J$ X

  77. 7 Z( j, V* G  j+ l+ I" ]( W$ |
  78. static int acnt = 512;! D& g# F, K( L; c  X
  79. static int bcnt = 8;
    $ w4 O6 H- S) T$ P' P. ]
  80. static int ccnt = 8;' _9 ?- u& a+ E2 n
  81. 9 a0 Q/ `  n' X: k9 b- B
  82. module_param(acnt, int, S_IRUGO);( M0 V% T) m4 s5 O; }# [1 v) `6 {
  83. module_param(bcnt, int, S_IRUGO);
    0 W0 M9 f, ?, l3 g$ K" X
  84. module_param(ccnt, int, S_IRUGO);
复制代码
. y9 F/ r/ N* O$ q

: R& u; T& Q* j) r1 ~' W      这是在TI上找到的一个针对Davanci处理器简单的EDMA3驱动程序测试例程的一部分,我在编译的过程中是用
) l! W4 l& ]7 l7 earm-none-linux-gnueabi-gcc  -I /home/tl/omapl138/linux-3.3/arch/arm/include -I /home/tl/omapl138/linux-3.3/include  EDMA3test.cpp -o EDMA3这个命令来链接库文件进行编译,但是报的错误特别多,我又试着一个函数一个函数往进加,仍然是很多错误。
, w/ x2 _& i+ p8 K. \3 h     我想问一下如何用一个简单的程序来测试一下EDMA3的驱动。- `+ C$ ]6 Q! l- q/ F) A

  B' M7 L, f5 N4 L& b- {2 L8 u3 A9 m" Q
; ?) |( w0 j/ [  C  |
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|小黑屋|嵌入式开发者社区 ( 粤ICP备15055271号

GMT+8, 2025-11-29 21:24 , Processed in 0.037976 second(s), 24 queries .

Powered by Discuz! X3.2

© 2001-2015 Comsenz Inc.

快速回复 返回顶部 返回列表