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
|
|
|
*
|
|
|
|
* Written 2010 by Werner Almesberger
|
|
|
|
* Copyright 2010 Werner Almesberger
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <usb.h>
|
|
|
|
|
|
|
|
#include "f32xbase/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
|
|
|
|
|
|
|
#include "driver.h"
|
|
|
|
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
#define FROM_DEV ATUSB_FROM_DEV(0)
|
|
|
|
#define TO_DEV ATUSB_TO_DEV(0)
|
2010-09-06 00:59:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* ----- error handling ---------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static int error;
|
|
|
|
|
|
|
|
|
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
|
|
|
static int atusb_error(void *dsc)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
static int atusb_clear_error(void *dsc)
|
2010-09-06 00:59:42 +03:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = error;
|
|
|
|
error = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ----- open/close -------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static void *atusb_open(void)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev;
|
|
|
|
|
|
|
|
dev = open_usb(USB_VENDOR, USB_PRODUCT);
|
|
|
|
if (dev) {
|
|
|
|
error = 0;
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, ":-(\n");
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_close(void *dsc)
|
|
|
|
{
|
|
|
|
/* to do */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ----- device mode ------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_reset(void *dsc)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
|
|
|
res =
|
2010-11-11 13:41:25 +02:00
|
|
|
usb_control_msg(dev, TO_DEV, ATUSB_RESET, 0, 0, NULL, 0, 1000);
|
2010-09-06 00:59:42 +03:00
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_RESET: %d\n", res);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_reset_rf(void *dsc)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
|
|
|
res =
|
2010-11-11 13:41:25 +02:00
|
|
|
usb_control_msg(dev, TO_DEV, ATUSB_RF_RESET, 0, 0, NULL, 0, 1000);
|
2010-09-06 00:59:42 +03:00
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_RF_RESET: %d\n", res);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-11 07:29:07 +02:00
|
|
|
static void atusb_test_mode(void *dsc)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
|
|
|
res =
|
2010-11-11 13:41:25 +02:00
|
|
|
usb_control_msg(dev, TO_DEV, ATUSB_TEST, 0, 0, NULL, 0, 1000);
|
2010-11-11 07:29:07 +02:00
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_TEST: %d\n", res);
|
2010-11-11 07:29:07 +02:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-06 00:59:42 +03:00
|
|
|
/* ----- register access --------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_reg_write(void *dsc, uint8_t reg, uint8_t value)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
res = usb_control_msg(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);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint8_t atusb_reg_read(void *dsc, uint8_t reg)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
uint8_t value = 0;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return 0;
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
res = usb_control_msg(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);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ----- frame buffer access ----------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
static void atusb_buf_write(void *dsc, const void *buf, int size)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return;
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
res = usb_control_msg(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);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int atusb_buf_read(void *dsc, void *buf, int size)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return -1;
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
res = usb_control_msg(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);
|
2010-09-06 00:59:42 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-10 02:22:45 +03:00
|
|
|
/* ----- RF interrupt ------------------------------------------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
static int atusd_interrupt(void *dsc)
|
|
|
|
{
|
|
|
|
usb_dev_handle *dev = dsc;
|
|
|
|
uint8_t buf;
|
|
|
|
int res;
|
|
|
|
|
|
|
|
if (error)
|
|
|
|
return -1;
|
|
|
|
|
2010-11-11 13:41:25 +02:00
|
|
|
res = usb_control_msg(dev, FROM_DEV, ATUSB_POLL_INT, 0, 0,
|
2010-09-10 02:22:45 +03:00
|
|
|
(void *) &buf, 1, 1000);
|
|
|
|
if (res < 0) {
|
2010-11-11 13:41:25 +02:00
|
|
|
fprintf(stderr, "ATUSB_POLL_INT: %d\n", res);
|
2010-09-10 02:22:45 +03:00
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-09-06 00:59:42 +03:00
|
|
|
/* ----- driver interface -------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
struct atspi_driver atusb_driver = {
|
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
|
|
|
.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,
|
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,
|
2010-09-10 02:22:45 +03:00
|
|
|
.interrupt = atusd_interrupt,
|
2010-09-06 00:59:42 +03:00
|
|
|
};
|