OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [net/] [bluetooth/] [lib.c] - Diff between revs 1275 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 1275 Rev 1765
/*
/*
   BlueZ - Bluetooth protocol stack for Linux
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated
   Copyright (C) 2000-2001 Qualcomm Incorporated
 
 
   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
 
 
   This program is free software; you can redistribute it and/or modify
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;
   published by the Free Software Foundation;
 
 
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   SOFTWARE IS DISCLAIMED.
   SOFTWARE IS DISCLAIMED.
*/
*/
 
 
/*
/*
 * BlueZ kernel library.
 * BlueZ kernel library.
 *
 *
 * $Id: lib.c,v 1.1.1.1 2004-04-15 01:17:00 phoenix Exp $
 * $Id: lib.c,v 1.1.1.1 2004-04-15 01:17:00 phoenix Exp $
 */
 */
 
 
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/stddef.h>
#include <linux/stddef.h>
#include <linux/string.h>
#include <linux/string.h>
#include <asm/errno.h>
#include <asm/errno.h>
 
 
#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/bluetooth.h>
 
 
void bluez_dump(char *pref, __u8 *buf, int count)
void bluez_dump(char *pref, __u8 *buf, int count)
{
{
        char *ptr;
        char *ptr;
        char line[100];
        char line[100];
        int i;
        int i;
 
 
        printk(KERN_INFO "%s: dump, len %d\n", pref, count);
        printk(KERN_INFO "%s: dump, len %d\n", pref, count);
 
 
        ptr = line;
        ptr = line;
        *ptr = 0;
        *ptr = 0;
        for (i = 0; i<count; i++) {
        for (i = 0; i<count; i++) {
                ptr += sprintf(ptr, " %2.2X", buf[i]);
                ptr += sprintf(ptr, " %2.2X", buf[i]);
 
 
                if (i && !((i + 1) % 20)) {
                if (i && !((i + 1) % 20)) {
                        printk(KERN_INFO "%s:%s\n", pref, line);
                        printk(KERN_INFO "%s:%s\n", pref, line);
                        ptr = line;
                        ptr = line;
                        *ptr = 0;
                        *ptr = 0;
                }
                }
        }
        }
 
 
        if (line[0])
        if (line[0])
                printk(KERN_INFO "%s:%s\n", pref, line);
                printk(KERN_INFO "%s:%s\n", pref, line);
}
}
 
 
void baswap(bdaddr_t *dst, bdaddr_t *src)
void baswap(bdaddr_t *dst, bdaddr_t *src)
{
{
        unsigned char *d = (unsigned char *) dst;
        unsigned char *d = (unsigned char *) dst;
        unsigned char *s = (unsigned char *) src;
        unsigned char *s = (unsigned char *) src;
        int i;
        int i;
 
 
        for (i = 0; i < 6; i++)
        for (i = 0; i < 6; i++)
                d[i] = s[5 - i];
                d[i] = s[5 - i];
}
}
 
 
char *batostr(bdaddr_t *ba)
char *batostr(bdaddr_t *ba)
{
{
        static char str[2][18];
        static char str[2][18];
        static int i = 1;
        static int i = 1;
 
 
        i ^= 1;
        i ^= 1;
        sprintf(str[i], "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
        sprintf(str[i], "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
                ba->b[0], ba->b[1], ba->b[2],
                ba->b[0], ba->b[1], ba->b[2],
                ba->b[3], ba->b[4], ba->b[5]);
                ba->b[3], ba->b[4], ba->b[5]);
 
 
        return str[i];
        return str[i];
}
}
 
 
/* Bluetooth error codes to Unix errno mapping */
/* Bluetooth error codes to Unix errno mapping */
int bterr(__u16 code)
int bterr(__u16 code)
{
{
        switch (code) {
        switch (code) {
        case 0:
        case 0:
                return 0;
                return 0;
 
 
        case 0x01:
        case 0x01:
                return EBADRQC;
                return EBADRQC;
 
 
        case 0x02:
        case 0x02:
                return ENOTCONN;
                return ENOTCONN;
 
 
        case 0x03:
        case 0x03:
                return EIO;
                return EIO;
 
 
        case 0x04:
        case 0x04:
                return EHOSTDOWN;
                return EHOSTDOWN;
 
 
        case 0x05:
        case 0x05:
                return EACCES;
                return EACCES;
 
 
        case 0x06:
        case 0x06:
                return EBADE;
                return EBADE;
 
 
        case 0x07:
        case 0x07:
                return ENOMEM;
                return ENOMEM;
 
 
        case 0x08:
        case 0x08:
                return ETIMEDOUT;
                return ETIMEDOUT;
 
 
        case 0x09:
        case 0x09:
                return EMLINK;
                return EMLINK;
 
 
        case 0x0a:
        case 0x0a:
                return EMLINK;
                return EMLINK;
 
 
        case 0x0b:
        case 0x0b:
                return EALREADY;
                return EALREADY;
 
 
        case 0x0c:
        case 0x0c:
                return EBUSY;
                return EBUSY;
 
 
        case 0x0d:
        case 0x0d:
        case 0x0e:
        case 0x0e:
        case 0x0f:
        case 0x0f:
                return ECONNREFUSED;
                return ECONNREFUSED;
 
 
        case 0x10:
        case 0x10:
                return ETIMEDOUT;
                return ETIMEDOUT;
 
 
        case 0x11:
        case 0x11:
        case 0x27:
        case 0x27:
        case 0x29:
        case 0x29:
        case 0x20:
        case 0x20:
                return EOPNOTSUPP;
                return EOPNOTSUPP;
 
 
        case 0x12:
        case 0x12:
                return EINVAL;
                return EINVAL;
 
 
        case 0x13:
        case 0x13:
        case 0x14:
        case 0x14:
        case 0x15:
        case 0x15:
                return ECONNRESET;
                return ECONNRESET;
 
 
        case 0x16:
        case 0x16:
                return ECONNABORTED;
                return ECONNABORTED;
 
 
        case 0x17:
        case 0x17:
                return ELOOP;
                return ELOOP;
 
 
        case 0x18:
        case 0x18:
                return EACCES;
                return EACCES;
 
 
        case 0x1a:
        case 0x1a:
                return EPROTONOSUPPORT;
                return EPROTONOSUPPORT;
 
 
        case 0x1b:
        case 0x1b:
                return ECONNREFUSED;
                return ECONNREFUSED;
 
 
        case 0x19:
        case 0x19:
        case 0x1e:
        case 0x1e:
        case 0x23:
        case 0x23:
        case 0x24:
        case 0x24:
        case 0x25:
        case 0x25:
                return EPROTO;
                return EPROTO;
 
 
        default:
        default:
                return ENOSYS;
                return ENOSYS;
        };
        };
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.