2009-12-04 08:41:11 +00:00
|
|
|
/*
|
|
|
|
Mantis PCI bridge driver
|
|
|
|
|
2009-12-15 12:13:49 +00:00
|
|
|
Copyright (C) Manu Abraham (abraham.manu@gmail.com)
|
2009-12-04 08:41:11 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
|
|
|
|
#include <linux/signal.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/interrupt.h>
|
2011-06-16 11:01:34 +00:00
|
|
|
#include <asm/io.h>
|
2009-12-04 08:41:11 +00:00
|
|
|
|
|
|
|
#include "dmxdev.h"
|
|
|
|
#include "dvbdev.h"
|
|
|
|
#include "dvb_demux.h"
|
|
|
|
#include "dvb_frontend.h"
|
|
|
|
#include "dvb_net.h"
|
|
|
|
|
|
|
|
#include "mantis_common.h"
|
|
|
|
#include "mantis_reg.h"
|
|
|
|
#include "mantis_ioc.h"
|
|
|
|
|
2009-12-04 08:56:35 +00:00
|
|
|
static int read_eeprom_bytes(struct mantis_pci *mantis, u8 reg, u8 *data, u8 length)
|
2009-12-04 08:41:11 +00:00
|
|
|
{
|
|
|
|
struct i2c_adapter *adapter = &mantis->adapter;
|
|
|
|
int err;
|
2009-12-04 08:56:35 +00:00
|
|
|
u8 buf = reg;
|
|
|
|
|
2009-12-04 08:41:11 +00:00
|
|
|
struct i2c_msg msg[] = {
|
2009-12-04 08:56:35 +00:00
|
|
|
{ .addr = 0x50, .flags = 0, .buf = &buf, .len = 1 },
|
2009-12-04 08:41:11 +00:00
|
|
|
{ .addr = 0x50, .flags = I2C_M_RD, .buf = data, .len = length },
|
|
|
|
};
|
|
|
|
|
|
|
|
err = i2c_transfer(adapter, msg, 2);
|
|
|
|
if (err < 0) {
|
|
|
|
dprintk(MANTIS_ERROR, 1, "ERROR: i2c read: < err=%i d0=0x%02x d1=0x%02x >",
|
|
|
|
err, data[0], data[1]);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int mantis_get_mac(struct mantis_pci *mantis)
|
|
|
|
{
|
|
|
|
int err;
|
2009-12-04 08:56:35 +00:00
|
|
|
u8 mac_addr[6] = {0};
|
2009-12-04 08:41:11 +00:00
|
|
|
|
2009-12-04 08:56:35 +00:00
|
|
|
err = read_eeprom_bytes(mantis, 0x08, mac_addr, 6);
|
2009-12-04 08:41:11 +00:00
|
|
|
if (err < 0) {
|
|
|
|
dprintk(MANTIS_ERROR, 1, "ERROR: Mantis EEPROM read error <%d>", err);
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2010-09-11 17:33:27 +00:00
|
|
|
dprintk(MANTIS_ERROR, 0, " MAC Address=[%pM]\n", mac_addr);
|
2009-12-04 08:41:11 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(mantis_get_mac);
|
|
|
|
|
|
|
|
/* Turn the given bit on or off. */
|
2010-11-14 17:56:00 +00:00
|
|
|
void mantis_gpio_set_bits(struct mantis_pci *mantis, u32 bitpos, u8 value)
|
2009-12-04 08:41:11 +00:00
|
|
|
{
|
|
|
|
u32 cur;
|
|
|
|
|
2009-12-04 08:56:35 +00:00
|
|
|
dprintk(MANTIS_DEBUG, 1, "Set Bit <%d> to <%d>", bitpos, value);
|
2009-12-04 08:41:11 +00:00
|
|
|
cur = mmread(MANTIS_GPIF_ADDR);
|
|
|
|
if (value)
|
|
|
|
mantis->gpio_status = cur | (1 << bitpos);
|
|
|
|
else
|
|
|
|
mantis->gpio_status = cur & (~(1 << bitpos));
|
|
|
|
|
2009-12-04 08:56:35 +00:00
|
|
|
dprintk(MANTIS_DEBUG, 1, "GPIO Value <%02x>", mantis->gpio_status);
|
2009-12-04 08:41:11 +00:00
|
|
|
mmwrite(mantis->gpio_status, MANTIS_GPIF_ADDR);
|
|
|
|
mmwrite(0x00, MANTIS_GPIF_DOUT);
|
|
|
|
}
|
2010-11-14 17:56:00 +00:00
|
|
|
EXPORT_SYMBOL_GPL(mantis_gpio_set_bits);
|
2009-12-04 08:41:11 +00:00
|
|
|
|
|
|
|
int mantis_stream_control(struct mantis_pci *mantis, enum mantis_stream_control stream_ctl)
|
|
|
|
{
|
|
|
|
u32 reg;
|
|
|
|
|
|
|
|
reg = mmread(MANTIS_CONTROL);
|
|
|
|
switch (stream_ctl) {
|
|
|
|
case STREAM_TO_HIF:
|
|
|
|
dprintk(MANTIS_DEBUG, 1, "Set stream to HIF");
|
|
|
|
reg &= 0xff - MANTIS_BYPASS;
|
|
|
|
mmwrite(reg, MANTIS_CONTROL);
|
|
|
|
reg |= MANTIS_BYPASS;
|
|
|
|
mmwrite(reg, MANTIS_CONTROL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STREAM_TO_CAM:
|
|
|
|
dprintk(MANTIS_DEBUG, 1, "Set stream to CAM");
|
|
|
|
reg |= MANTIS_BYPASS;
|
|
|
|
mmwrite(reg, MANTIS_CONTROL);
|
|
|
|
reg &= 0xff - MANTIS_BYPASS;
|
|
|
|
mmwrite(reg, MANTIS_CONTROL);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dprintk(MANTIS_ERROR, 1, "Unknown MODE <%02x>", stream_ctl);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(mantis_stream_control);
|