Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 1 | /* |
| 2 | * cx18 driver PCI memory mapped IO access routines |
| 3 | * |
| 4 | * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl> |
| 5 | * Copyright (C) 2008 Andy Walls <awalls@radix.net> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 20 | * 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include "cx18-driver.h" |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 24 | #include "cx18-io.h" |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 25 | #include "cx18-irq.h" |
| 26 | |
Andy Walls | d267d85 | 2008-09-28 21:46:02 -0300 | [diff] [blame] | 27 | void cx18_log_statistics(struct cx18 *cx) |
| 28 | { |
| 29 | int i; |
| 30 | |
| 31 | if (!(cx18_debug & CX18_DBGFLG_INFO)) |
| 32 | return; |
| 33 | |
Andy Walls | 330c6ec | 2008-11-08 14:19:37 -0300 | [diff] [blame] | 34 | for (i = 0; i <= CX18_MAX_MB_ACK_DELAY; i++) |
| 35 | if (atomic_read(&cx->mbox_stats.mb_ack_delay[i])) |
| 36 | CX18_DEBUG_INFO("mb_ack_delay[%d] = %d\n", i, |
| 37 | atomic_read(&cx->mbox_stats.mb_ack_delay[i])); |
Andy Walls | d267d85 | 2008-09-28 21:46:02 -0300 | [diff] [blame] | 38 | return; |
| 39 | } |
| 40 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 41 | void cx18_memset_io(struct cx18 *cx, void __iomem *addr, int val, size_t count) |
| 42 | { |
Hans Verkuil | 2796073 | 2008-09-06 14:02:43 -0300 | [diff] [blame] | 43 | u8 __iomem *dst = addr; |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 44 | u16 val2 = val | (val << 8); |
| 45 | u32 val4 = val2 | (val2 << 16); |
| 46 | |
| 47 | /* Align writes on the CX23418's addresses */ |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 48 | if ((count > 0) && ((unsigned long)dst & 1)) { |
| 49 | cx18_writeb(cx, (u8) val, dst); |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 50 | count--; |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 51 | dst++; |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 52 | } |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 53 | if ((count > 1) && ((unsigned long)dst & 2)) { |
| 54 | cx18_writew(cx, val2, dst); |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 55 | count -= 2; |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 56 | dst += 2; |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 57 | } |
| 58 | while (count > 3) { |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 59 | cx18_writel(cx, val4, dst); |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 60 | count -= 4; |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 61 | dst += 4; |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 62 | } |
| 63 | if (count > 1) { |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 64 | cx18_writew(cx, val2, dst); |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 65 | count -= 2; |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 66 | dst += 2; |
Andy Walls | c641d09 | 2008-09-01 00:40:41 -0300 | [diff] [blame] | 67 | } |
| 68 | if (count > 0) |
Andy Walls | ac2b97b | 2008-09-04 13:16:40 -0300 | [diff] [blame] | 69 | cx18_writeb(cx, (u8) val, dst); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | void cx18_sw1_irq_enable(struct cx18 *cx, u32 val) |
| 73 | { |
Andy Walls | f056d29 | 2008-10-31 20:49:12 -0300 | [diff] [blame] | 74 | cx18_write_reg_expect(cx, val, SW1_INT_STATUS, ~val, val); |
Andy Walls | d6c7e5f | 2008-11-17 22:48:46 -0300 | [diff] [blame^] | 75 | cx->sw1_irq_mask = cx18_read_reg(cx, SW1_INT_ENABLE_PCI) | val; |
| 76 | cx18_write_reg(cx, cx->sw1_irq_mask, SW1_INT_ENABLE_PCI); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | void cx18_sw1_irq_disable(struct cx18 *cx, u32 val) |
| 80 | { |
Andy Walls | d6c7e5f | 2008-11-17 22:48:46 -0300 | [diff] [blame^] | 81 | cx->sw1_irq_mask = cx18_read_reg(cx, SW1_INT_ENABLE_PCI) & ~val; |
| 82 | cx18_write_reg(cx, cx->sw1_irq_mask, SW1_INT_ENABLE_PCI); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | void cx18_sw2_irq_enable(struct cx18 *cx, u32 val) |
| 86 | { |
Andy Walls | f056d29 | 2008-10-31 20:49:12 -0300 | [diff] [blame] | 87 | cx18_write_reg_expect(cx, val, SW2_INT_STATUS, ~val, val); |
Andy Walls | d6c7e5f | 2008-11-17 22:48:46 -0300 | [diff] [blame^] | 88 | cx->sw2_irq_mask = cx18_read_reg(cx, SW2_INT_ENABLE_PCI) | val; |
| 89 | cx18_write_reg(cx, cx->sw2_irq_mask, SW2_INT_ENABLE_PCI); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void cx18_sw2_irq_disable(struct cx18 *cx, u32 val) |
| 93 | { |
Andy Walls | d6c7e5f | 2008-11-17 22:48:46 -0300 | [diff] [blame^] | 94 | cx->sw2_irq_mask = cx18_read_reg(cx, SW2_INT_ENABLE_PCI) & ~val; |
| 95 | cx18_write_reg(cx, cx->sw2_irq_mask, SW2_INT_ENABLE_PCI); |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 96 | } |
| 97 | |
Andy Walls | d20ceec | 2008-11-09 18:14:07 -0300 | [diff] [blame] | 98 | void cx18_sw2_irq_disable_cpu(struct cx18 *cx, u32 val) |
| 99 | { |
| 100 | u32 r; |
| 101 | r = cx18_read_reg(cx, SW2_INT_ENABLE_CPU); |
| 102 | cx18_write_reg(cx, r & ~val, SW2_INT_ENABLE_CPU); |
| 103 | } |
| 104 | |
Andy Walls | b152642 | 2008-08-30 16:03:44 -0300 | [diff] [blame] | 105 | void cx18_setup_page(struct cx18 *cx, u32 addr) |
| 106 | { |
| 107 | u32 val; |
| 108 | val = cx18_read_reg(cx, 0xD000F8); |
| 109 | val = (val & ~0x1f00) | ((addr >> 17) & 0x1f00); |
| 110 | cx18_write_reg(cx, val, 0xD000F8); |
| 111 | } |