2010-09-06 00:59:42 +03:00
|
|
|
/*
|
2010-11-11 13:41:25 +02:00
|
|
|
* lib/atusb.c - ATUSB access functions library (USB version)
|
2010-09-06 00:59:42 +03:00
|
|
|
*
|
2011-02-11 04:11:34 +02:00
|
|
|
* Written 2010-2011 by Werner Almesberger
|
|
|
|
* Copyright 2010-2011 Werner Almesberger
|
2010-09-06 00:59:42 +03: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-06-19 19:09:45 +03:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2010-09-06 00:59:42 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <usb.h>
|
|
|
|
|
2010-11-11 13:26:01 +02:00
|
|
|
#include "atusb/ep0.h"
|
|
|
|
#include "atusb/usb-ids.h"
|
2010-09-06 00:59:42 +03:00
|
|
|
|
2011-04-10 13:43:42 +03:00
|
|
|
#include "usbopen.h"
|
2010-09-06 00:59:42 +03:00
|
|
|
#include "driver.h"
|
tools/lib/: split non-SPI code from atusb.c in preparation for SPI-based driver
- atusb.c (atusb_error, atusb_clear_error, atusb_open, atusb_close,
atusb_reset, atusb_reset_rf, atusb_test_mode, atusb_slp_tr,
atusb_interrupt, atusb_set_clkm, atusb_dev_handle): moved to
atusb-common.c
- atusb-common.c (atusb_set_clkm): pass atusb_reg_write via
atusb_driver.reg_write instead
- atusb.c (FROM_DEV, TO_DEV, struct atusb_dsc): moved to atusb-common.h
- Makefile (OBJS): added atusb-common.o
2011-06-19 20:06:00 +03:00
|
|
|
#include "atusb-common.h"
|
2010-11-11 07:29:07 +02:00
|
|
|
|
|
|
|
|
2010-09-06 00:59:42 +03:00
|
|
|
/* ----- register access --------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
static void atusb_reg_write(void *handle, uint8_t reg, uint8_t value)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
2011-04-12 15:22:40 +03:00
|
|
|
struct atusb_dsc *dsc = handle;
|
2010-09-06 00:59:42 +03:00
|
|
|
int res;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
if (dsc->error)
|
2010-09-06 00:59:42 +03:00
|
|
|
return;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
res = usb_control_msg(dsc->dev, TO_DEV, ATUSB_REG_WRITE, value, reg,
|
2010-09-06 00:59:42 +03:00
|
|
|
NULL, 0, 1000);
|
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_REG_WRITE: %d\n", res);
|
2011-04-12 15:22:40 +03:00
|
|
|
dsc->error = 1;
|
2010-09-06 00:59:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
static uint8_t atusb_reg_read(void *handle, uint8_t reg)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
2011-04-12 15:22:40 +03:00
|
|
|
struct atusb_dsc *dsc = handle;
|
2010-09-06 00:59:42 +03:00
|
|
|
uint8_t value = 0;
|
|
|
|
int res;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
if (dsc->error)
|
2010-09-06 00:59:42 +03:00
|
|
|
return 0;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
res = usb_control_msg(dsc->dev, FROM_DEV, ATUSB_REG_READ, 0, reg,
|
2010-09-06 00:59:42 +03:00
|
|
|
(void *) &value, 1, 1000);
|
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_REG_READ: %d\n", res);
|
2011-04-12 15:22:40 +03:00
|
|
|
dsc->error = 1;
|
2010-09-06 00:59:42 +03:00
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ----- frame buffer access ----------------------------------------------- */
|
|
|
|
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
static void atusb_buf_write(void *handle, const void *buf, int size)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
2011-04-12 15:22:40 +03:00
|
|
|
struct atusb_dsc *dsc = handle;
|
2010-09-06 00:59:42 +03:00
|
|
|
int res;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
if (dsc->error)
|
2010-09-06 00:59:42 +03:00
|
|
|
return;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
res = usb_control_msg(dsc->dev, TO_DEV, ATUSB_BUF_WRITE, 0, 0,
|
2010-09-06 00:59:42 +03:00
|
|
|
(void *) buf, size, 1000);
|
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_BUF_WRITE: %d\n", res);
|
2011-04-12 15:22:40 +03:00
|
|
|
dsc->error = 1;
|
2010-09-06 00:59:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
static int atusb_buf_read(void *handle, void *buf, int size)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
2011-04-12 15:22:40 +03:00
|
|
|
struct atusb_dsc *dsc = handle;
|
2010-09-06 00:59:42 +03:00
|
|
|
int res;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
if (dsc->error)
|
2010-09-06 00:59:42 +03:00
|
|
|
return -1;
|
|
|
|
|
2011-04-12 15:22:40 +03:00
|
|
|
res = usb_control_msg(dsc->dev, FROM_DEV, ATUSB_BUF_READ, 0, 0,
|
2010-09-06 00:59:42 +03:00
|
|
|
buf, size, 1000);
|
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_BUF_READ: %d\n", res);
|
2011-04-12 15:22:40 +03:00
|
|
|
dsc->error = 1;
|
2010-09-06 00:59:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-03 20:26:47 +03:00
|
|
|
/* ----- SRAM access ------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_sram_write(void *handle, uint8_t addr, uint8_t value)
|
|
|
|
{
|
|
|
|
struct atusb_dsc *dsc = handle;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (dsc->error)
|
|
|
|
return;
|
|
|
|
|
|
|
|
res = usb_control_msg(dsc->dev, TO_DEV, ATUSB_SRAM_WRITE, 0, addr,
|
|
|
|
&value, 1, 1000);
|
|
|
|
if (res < 0) {
|
|
|
|
fprintf(stderr, "ATUSB_SRAM_WRITE: %d\n", res);
|
|
|
|
dsc->error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t atusb_sram_read(void *handle, uint8_t addr)
|
|
|
|
{
|
|
|
|
struct atusb_dsc *dsc = handle;
|
|
|
|
uint8_t value = 0;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (dsc->error)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
res = usb_control_msg(dsc->dev, FROM_DEV, ATUSB_SRAM_READ, 0, addr,
|
|
|
|
(void *) &value, 1, 1000);
|
|
|
|
if (res < 0) {
|
|
|
|
fprintf(stderr, "ATUSB_SRAM_READ: %d\n", res);
|
|
|
|
dsc->error = 1;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-06 00:59:42 +03:00
|
|
|
/* ----- driver interface -------------------------------------------------- */
|
|
|
|
|
|
|
|
|
2010-11-11 14:04:36 +02:00
|
|
|
struct atrf_driver atusb_driver = {
|
2011-04-10 03:18:31 +03:00
|
|
|
.name = "usb",
|
2010-09-06 00:59:42 +03:00
|
|
|
.open = atusb_open,
|
|
|
|
.close = atusb_close,
|
Merged uSD driver into unified tool build, completed conversion of tools.
- atusd/tools/lib/atusd.c: moved to tools/lib/
- atusd/tools/lib/atusd.h: removed, we can now use tools/include/atspi.h
- tools/lib/atusd.c: added copyright header
- tools/lib/atusd.c: updated for driver API
- tools/lib/Makefile: added atusd.o
- tools/Makefile.common: moved common elements from all other makefiles in
tools/*/ here
- tools/Makefile.common: added target-specific compiler and flags
- tools/atspi-id/Makefile, tools/atspi-reset/Makefile,
tools/atspi-rssi/Makefile, tools/atspi-trim/Makefile,
tools/atspi-txrx/Makefile, tools/lib/Makefile: used Makefile.common
- tools/lib/Makefile: differentiate USB and uSD build
- tools/atspi-id/atspi-id.c, tools/atspi-reset/atspi-reset.c,
tools/atspi-rssi/atspi-rssi.c, tools/atspi-trim/atspi-trim.c,
tools/atspi-txr/atspi-txr.c: updated for driver-agnostic API
- tools/atspi-id/atspi-id.c, tools/atspi-reset/atspi-reset.c,
tools/atspi-rssi/atspi-rssi.c, tools/atspi-trim/atspi-trim.c,
tools/atspi-txr/atspi-txr.c: corrected AF86RF230 typo in title
- tools/include/atspi.h, tools/lib/atspi.c, tools/lib/driver.c,
tools/lib/atusb.c: brought back support for atspi_error and
atspi_clear_error
- tools/atspi-id/atspi-id.c (atspi_get_protocol): renamed to get_protocol,
to make it clear that it's not from libatspi
- tools/atspi-id/atspi-id.c (atspi_get_build): renamed to get_build, to
make it clear that it's not from libatspi
- tools/include/atspi.h, tools/lib/atspi.c (atspi_usb_handle): new function
to obtain a driver's USB device handle (or NULL if the driver doesn't use
USB)
2010-09-06 02:32:58 +03:00
|
|
|
.error = atusb_error,
|
|
|
|
.clear_error = atusb_clear_error,
|
2010-09-06 00:59:42 +03:00
|
|
|
.reset = atusb_reset,
|
|
|
|
.reset_rf = atusb_reset_rf,
|
2010-11-11 07:29:07 +02:00
|
|
|
.test_mode = atusb_test_mode,
|
2011-06-06 04:37:03 +03:00
|
|
|
.slp_tr = atusb_slp_tr,
|
2011-02-11 04:11:34 +02:00
|
|
|
.set_clkm = atusb_set_clkm,
|
2010-09-06 00:59:42 +03:00
|
|
|
.reg_write = atusb_reg_write,
|
|
|
|
.reg_read = atusb_reg_read,
|
|
|
|
.buf_write = atusb_buf_write,
|
|
|
|
.buf_read = atusb_buf_read,
|
2011-06-03 20:26:47 +03:00
|
|
|
.sram_write = atusb_sram_write,
|
|
|
|
.sram_read = atusb_sram_read,
|
2010-11-11 15:34:09 +02:00
|
|
|
.interrupt = atusb_interrupt,
|
2010-09-06 00:59:42 +03:00
|
|
|
};
|