Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by spk_lionking

  1. S

    How to use interrupt with local ip interrupt controller

    I know microblaze support fast interrupt mode with 3 signal: interrupt, interrupt_address and interrupt_ack. So I connect these signal to 3 corresspond signal in my interrupt controller. I have some question here: 1)If i wanna use fast interrupt, so interrupt handler has a format below, right...
  2. S

    How to use interrupt with local ip interrupt controller

    I wanna access in a register like a bit. Example : u32 ISR = Xil_In32(TMR1_BASEADDR + bTmrTCSR0); if (ISR[8] == 1) function(); else fuction1(); But this error "subscripted value is neither array nor pointer nor vector" happen.
  3. S

    How to use interrupt with local ip interrupt controller

    aruipksni, all signal have connected. now I build application interrupt handle for my SoPC. I have some problem here. I have 1 interrupt interrupt from AXI timer. Main program: just a simple shift 8 led. MyINTC_Initialize(): Initialize my interrupt controller ( enable...
  4. S

    How to use interrupt with local ip interrupt controller

    how about ID interrupt source ? aruipksn
  5. S

    How to use interrupt with local ip interrupt controller

    PORT INTERRUPT = Interrupt, DIR = I, LEVEL = HIGH, SIGIS = INTERRUPT##, BUS = INTERRUPT PORT INTERRUPT_ADDRESS = Interrupt_Address, DIR = I, VEC = [0:31]##, BUS = INTERRUPT PORT INTERRUPT_ACK = Interrupt_Ack, DIR = O, VEC = [0:1]##, BUS = INTERRUPT so I should uncomment it,right ??? With...
  6. S

    How to use interrupt with local ip interrupt controller

    I have just connect 3 signal interrupt, interrupt_address, interrupt_ack invidiual, so DRC not warning driven to GND any more WARNING:EDK:4180 - PORT: tdi_in, CONNECTOR: bscan_tdi - No driver found. Port will be driven to GND -...
  7. S

    How to use interrupt with local ip interrupt controller

    I think APB interface in my interrupt, It's ok when I use code below void MyINTC_Initialize() { Xil_Out8(sysclr, 0x01); Xil_Out8(ier, 0xff); Xil_Out8(iscra, 0x55); Xil_Out8(iscrb, 0x55); Xil_Out8(ipra, 0x10); Xil_Out8(iprb, 0x32); Xil_Out8(iprc, 0x54); Xil_Out8(iprd, 0x76)...
  8. S

    How to use interrupt with local ip interrupt controller

    as you see no ID for interrupt source signal, so can i build interrupt without ID interrupt source ??
  9. S

    How to use interrupt with local ip interrupt controller

    @aruipksni have any problem wth my XPS project ???
  10. S

    How to use interrupt with local ip interrupt controller

    this is my project in XPS. I use xps 14.6
  11. S

    How to use interrupt with local ip interrupt controller

    anybody can help me about this problem ???
  12. S

    How to use interrupt with local ip interrupt controller

    indeed. I conntect to all interrupt source "ext_event" ,"nmi_event" and "irq_in". any problem about this ??? Besides, I edit it in mpid file right?? But still no ID interrupt na. You can see my xparameter.h below Attachment: /*******************************************************************...
  13. S

    How to use interrupt with local ip interrupt controller

    I do it just like you say but in xparameter.h still not ID for interrupt source ## Ports PORT req_int = Interrupt, DIR = O, SIGIS = INTERRUPT, BUS = INTERRUPT, PERMIT = BASE_USER, DESC = 'Interrupt Request Output' PORT vect_int = Interrupt_Address, DIR = O, VEC = [31:0], VEC = [31:0], ENDIAN =...
  14. S

    How to use interrupt with local ip interrupt controller

    If I insert the line just like you write above, it mean have a priority for each interrupt source[L to H], right ??? But I don't want this priority because my interrupt controller support "programmable priority" for each interrupt already, you have a way what to ignore this ?? because i just...
  15. S

    How to use interrupt with local ip interrupt controller

    I don't sure PORT Interrupt just you write above, its a interrupt input source or output to MicroBlaze ??? This is mpd file of my interrupt controller: BEGIN intc ## Peripheral Options OPTION IPTYPE = PERIPHERAL OPTION IMP_NETLIST = TRUE OPTION HDL = MIXED OPTION IP_GROUP = USER ## Bus...

Part and Inventory Search

Back
Top