blob: c6f1d0d7f2c267e78d95e7e5fa062ebc033fe9fb [file] [log] [blame]
Andy Wallsb1526422008-08-30 16:03:44 -03001/*
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 Wallsc641d092008-09-01 00:40:41 -030024#include "cx18-io.h"
Andy Wallsb1526422008-08-30 16:03:44 -030025#include "cx18-irq.h"
26
Andy Wallsd267d852008-09-28 21:46:02 -030027void cx18_log_statistics(struct cx18 *cx)
28{
29 int i;
30
31 if (!(cx18_debug & CX18_DBGFLG_INFO))
32 return;
33
Andy Walls330c6ec2008-11-08 14:19:37 -030034 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 Wallsd267d852008-09-28 21:46:02 -030038 return;
39}
40
Andy Wallsb1526422008-08-30 16:03:44 -030041void cx18_memset_io(struct cx18 *cx, void __iomem *addr, int val, size_t count)
42{
Hans Verkuil27960732008-09-06 14:02:43 -030043 u8 __iomem *dst = addr;
Andy Wallsc641d092008-09-01 00:40:41 -030044 u16 val2 = val | (val << 8);
45 u32 val4 = val2 | (val2 << 16);
46
47 /* Align writes on the CX23418's addresses */
Andy Wallsac2b97b2008-09-04 13:16:40 -030048 if ((count > 0) && ((unsigned long)dst & 1)) {
49 cx18_writeb(cx, (u8) val, dst);
Andy Wallsc641d092008-09-01 00:40:41 -030050 count--;
Andy Wallsac2b97b2008-09-04 13:16:40 -030051 dst++;
Andy Wallsc641d092008-09-01 00:40:41 -030052 }
Andy Wallsac2b97b2008-09-04 13:16:40 -030053 if ((count > 1) && ((unsigned long)dst & 2)) {
54 cx18_writew(cx, val2, dst);
Andy Wallsc641d092008-09-01 00:40:41 -030055 count -= 2;
Andy Wallsac2b97b2008-09-04 13:16:40 -030056 dst += 2;
Andy Wallsc641d092008-09-01 00:40:41 -030057 }
58 while (count > 3) {
Andy Wallsac2b97b2008-09-04 13:16:40 -030059 cx18_writel(cx, val4, dst);
Andy Wallsc641d092008-09-01 00:40:41 -030060 count -= 4;
Andy Wallsac2b97b2008-09-04 13:16:40 -030061 dst += 4;
Andy Wallsc641d092008-09-01 00:40:41 -030062 }
63 if (count > 1) {
Andy Wallsac2b97b2008-09-04 13:16:40 -030064 cx18_writew(cx, val2, dst);
Andy Wallsc641d092008-09-01 00:40:41 -030065 count -= 2;
Andy Wallsac2b97b2008-09-04 13:16:40 -030066 dst += 2;
Andy Wallsc641d092008-09-01 00:40:41 -030067 }
68 if (count > 0)
Andy Wallsac2b97b2008-09-04 13:16:40 -030069 cx18_writeb(cx, (u8) val, dst);
Andy Wallsb1526422008-08-30 16:03:44 -030070}
71
72void cx18_sw1_irq_enable(struct cx18 *cx, u32 val)
73{
Andy Wallsf056d292008-10-31 20:49:12 -030074 cx18_write_reg_expect(cx, val, SW1_INT_STATUS, ~val, val);
Andy Wallsd6c7e5f2008-11-17 22:48:46 -030075 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 Wallsb1526422008-08-30 16:03:44 -030077}
78
79void cx18_sw1_irq_disable(struct cx18 *cx, u32 val)
80{
Andy Wallsd6c7e5f2008-11-17 22:48:46 -030081 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 Wallsb1526422008-08-30 16:03:44 -030083}
84
85void cx18_sw2_irq_enable(struct cx18 *cx, u32 val)
86{
Andy Wallsf056d292008-10-31 20:49:12 -030087 cx18_write_reg_expect(cx, val, SW2_INT_STATUS, ~val, val);
Andy Wallsd6c7e5f2008-11-17 22:48:46 -030088 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 Wallsb1526422008-08-30 16:03:44 -030090}
91
92void cx18_sw2_irq_disable(struct cx18 *cx, u32 val)
93{
Andy Wallsd6c7e5f2008-11-17 22:48:46 -030094 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 Wallsb1526422008-08-30 16:03:44 -030096}
97
Andy Wallsd20ceec2008-11-09 18:14:07 -030098void 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 Wallsb1526422008-08-30 16:03:44 -0300105void 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}