mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 00:34:39 +08:00
0a259dd05b
This patch adds SPDX License Identifier and removes the license text. ------------------------------------- License COUNT ------------------------------------- GPL-2.0-or-later : 97 LGPL-2.1-or-later : 38 GPL-2.0-only : 2 License: GPL-2.0-or-later tools/l2cap-tester.c tools/hcisecfilter.c tools/ciptool.c tools/btsnoop.c tools/check-selftest.c tools/btpclientctl.c tools/hci-tester.c tools/hcitool.c tools/btiotest.c tools/oobtest.c tools/btinfo.c tools/hwdb.c tools/hciattach_bcm43xx.c tools/mgmt-tester.c tools/hex2hcd.c tools/hciattach_st.c tools/smp-tester.c tools/bluetooth-player.c tools/hciattach_tialt.c tools/gap-tester.c tools/bluemoon.c tools/bneptest.c tools/gatt-service.c tools/rctest.c tools/rfcomm-tester.c tools/hcieventmask.c tools/hciattach_ti.c tools/seq2bseq.c tools/scotest.c tools/bcmfw.c tools/hciconfig.c tools/btattach.c tools/l2ping.c tools/obexctl.c tools/l2test.c tools/hciattach_intel.c tools/hciattach.h tools/create-image.c tools/bnep-tester.c tools/userchan-tester.c tools/rfcomm.c tools/btmon-logger.c tools/hcidump.c tools/rtlfw.c tools/hciattach_qualcomm.c tools/btproxy.c tools/nokfw.c tools/hciattach_ath3k.c tools/3dsp.c tools/bdaddr.c tools/sco-tester.c tools/hciattach.c tools/amptest.c tools/btgatt-server.c tools/btgatt-client.c tools/cltest.c tools/ibeacon.c tools/mcaptest.c tools/hid2hci.c tools/btmgmt.c tools/advtest.c tools/eddystone.c tools/avtest.c tools/mpris-proxy.c tools/avinfo.c tools/sdptool.c tools/btconfig.c tools/update_compids.sh tools/parser/parser.h tools/parser/obex.c tools/parser/amp.c tools/parser/sdp.c tools/parser/tcpip.c tools/parser/sap.c tools/parser/cmtp.c tools/parser/avctp.c tools/parser/lmp.c tools/parser/ppp.c tools/parser/rfcomm.h tools/parser/hci.c tools/parser/sdp.h tools/parser/parser.c tools/parser/rfcomm.c tools/parser/avdtp.c tools/parser/avrcp.c tools/parser/ericsson.c tools/parser/hcrp.c tools/parser/bpa.c tools/parser/hidp.c tools/parser/bnep.c tools/parser/capi.c tools/parser/att.c tools/parser/l2cap.c tools/parser/smp.c tools/parser/csr.c tools/parser/l2cap.h tools/parse_companies.pl License: LGPL-2.1-or-later tools/test-runner.c tools/btpclient.c tools/meshctl.c tools/mesh-cfgclient.c tools/mesh/model.h tools/mesh/util.h tools/mesh/config-model.h tools/mesh/cfgcli.h tools/mesh/mesh-db.c tools/mesh/mesh-db.h tools/mesh/keys.c tools/mesh/util.c tools/mesh/agent.h tools/mesh/remote.c tools/mesh/keys.h tools/mesh/agent.c tools/mesh/cfgcli.c tools/mesh/remote.h tools/mesh-gatt/prov.c tools/mesh-gatt/util.h tools/mesh-gatt/prov.h tools/mesh-gatt/net.c tools/mesh-gatt/util.c tools/mesh-gatt/prov-db.h tools/mesh-gatt/crypto.c tools/mesh-gatt/crypto.h tools/mesh-gatt/gatt.c tools/mesh-gatt/config-server.c tools/mesh-gatt/keys.h tools/mesh-gatt/onoff-model.c tools/mesh-gatt/net.h tools/mesh-gatt/gatt.h tools/mesh-gatt/node.c tools/mesh-gatt/config-client.c tools/mesh-gatt/mesh-net.h tools/mesh-gatt/node.h tools/mesh-gatt/onoff-model.h tools/mesh-gatt/prov-db.c License: GPL-2.0-only tools/obex-server-tool.c tools/obex-client-tool.c
266 lines
4.7 KiB
C
266 lines
4.7 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2005-2010 Marcel Holtmann <marcel@holtmann.org>
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <dirent.h>
|
|
#include <sys/param.h>
|
|
|
|
#include "lib/bluetooth.h"
|
|
|
|
#include "hciattach.h"
|
|
|
|
static int debug = 0;
|
|
|
|
static int do_command(int fd, uint8_t ogf, uint16_t ocf,
|
|
uint8_t *cparam, int clen, uint8_t *rparam, int rlen)
|
|
{
|
|
//uint16_t opcode = (uint16_t) ((ocf & 0x03ff) | (ogf << 10));
|
|
unsigned char cp[260], rp[260];
|
|
int len, size, offset = 3;
|
|
|
|
cp[0] = 0x01;
|
|
cp[1] = ocf & 0xff;
|
|
cp[2] = ogf << 2 | ocf >> 8;
|
|
cp[3] = clen;
|
|
|
|
if (clen > 0)
|
|
memcpy(cp + 4, cparam, clen);
|
|
|
|
if (debug) {
|
|
int i;
|
|
printf("[<");
|
|
for (i = 0; i < clen + 4; i++)
|
|
printf(" %02x", cp[i]);
|
|
printf("]\n");
|
|
}
|
|
|
|
if (write(fd, cp, clen + 4) < 0)
|
|
return -1;
|
|
|
|
do {
|
|
if (read(fd, rp, 1) < 1)
|
|
return -1;
|
|
} while (rp[0] != 0x04);
|
|
|
|
if (read(fd, rp + 1, 2) < 2)
|
|
return -1;
|
|
|
|
do {
|
|
len = read(fd, rp + offset, sizeof(rp) - offset);
|
|
offset += len;
|
|
} while (offset < rp[2] + 3);
|
|
|
|
if (debug) {
|
|
int i;
|
|
printf("[>");
|
|
for (i = 0; i < offset; i++)
|
|
printf(" %02x", rp[i]);
|
|
printf("]\n");
|
|
}
|
|
|
|
if (rp[0] != 0x04) {
|
|
errno = EIO;
|
|
return -1;
|
|
}
|
|
|
|
switch (rp[1]) {
|
|
case 0x0e: /* command complete */
|
|
if (rp[6] != 0x00)
|
|
return -ENXIO;
|
|
offset = 3 + 4;
|
|
size = rp[2] - 4;
|
|
break;
|
|
case 0x0f: /* command status */
|
|
/* fall through */
|
|
default:
|
|
offset = 3;
|
|
size = rp[2];
|
|
break;
|
|
}
|
|
|
|
if (!rparam || rlen < size)
|
|
return -ENXIO;
|
|
|
|
memcpy(rparam, rp + offset, size);
|
|
|
|
return size;
|
|
}
|
|
|
|
static int load_file(int dd, uint16_t version, const char *suffix)
|
|
{
|
|
DIR *dir;
|
|
struct dirent *d;
|
|
char pathname[PATH_MAX], filename[PATH_MAX + NAME_MAX + 1], prefix[20];
|
|
unsigned char cmd[256];
|
|
unsigned char buf[256];
|
|
uint8_t seqnum = 0;
|
|
int fd, size, len, found_fw_file;
|
|
|
|
memset(filename, 0, sizeof(filename));
|
|
|
|
snprintf(prefix, sizeof(prefix), "STLC2500_R%d_%02d_",
|
|
version >> 8, version & 0xff);
|
|
|
|
strcpy(pathname, "/lib/firmware");
|
|
dir = opendir(pathname);
|
|
if (!dir) {
|
|
strcpy(pathname, ".");
|
|
dir = opendir(pathname);
|
|
if (!dir)
|
|
return -errno;
|
|
}
|
|
|
|
found_fw_file = 0;
|
|
while (1) {
|
|
d = readdir(dir);
|
|
if (!d)
|
|
break;
|
|
|
|
if (strncmp(d->d_name + strlen(d->d_name) - strlen(suffix),
|
|
suffix, strlen(suffix)))
|
|
continue;
|
|
|
|
if (strncmp(d->d_name, prefix, strlen(prefix)))
|
|
continue;
|
|
|
|
snprintf(filename, sizeof(filename), "%s/%s",
|
|
pathname, d->d_name);
|
|
found_fw_file = 1;
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
if (!found_fw_file)
|
|
return -ENOENT;
|
|
|
|
printf("Loading file %s\n", filename);
|
|
|
|
fd = open(filename, O_RDONLY);
|
|
if (fd < 0) {
|
|
perror("Can't open firmware file");
|
|
return -errno;
|
|
}
|
|
|
|
while (1) {
|
|
size = read(fd, cmd + 1, 254);
|
|
if (size <= 0)
|
|
break;
|
|
|
|
cmd[0] = seqnum;
|
|
|
|
len = do_command(dd, 0xff, 0x002e, cmd, size + 1, buf, sizeof(buf));
|
|
if (len < 1)
|
|
break;
|
|
|
|
if (buf[0] != seqnum) {
|
|
fprintf(stderr, "Sequence number mismatch\n");
|
|
break;
|
|
}
|
|
|
|
seqnum++;
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int stlc2500_init(int dd, bdaddr_t *bdaddr)
|
|
{
|
|
unsigned char cmd[16];
|
|
unsigned char buf[254];
|
|
uint16_t version;
|
|
int len;
|
|
int err;
|
|
|
|
/* Hci_Cmd_Ericsson_Read_Revision_Information */
|
|
len = do_command(dd, 0xff, 0x000f, NULL, 0, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
printf("%s\n", buf);
|
|
|
|
/* HCI_Read_Local_Version_Information */
|
|
len = do_command(dd, 0x04, 0x0001, NULL, 0, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
version = buf[2] << 8 | buf[1];
|
|
|
|
err = load_file(dd, version, ".ptc");
|
|
if (err < 0) {
|
|
if (err == -ENOENT)
|
|
fprintf(stderr, "No ROM patch file loaded.\n");
|
|
else
|
|
return -1;
|
|
}
|
|
|
|
err = load_file(dd, buf[2] << 8 | buf[1], ".ssf");
|
|
if (err < 0) {
|
|
if (err == -ENOENT)
|
|
fprintf(stderr, "No static settings file loaded.\n");
|
|
else
|
|
return -1;
|
|
}
|
|
|
|
cmd[0] = 0xfe;
|
|
cmd[1] = 0x06;
|
|
bacpy((bdaddr_t *) (cmd + 2), bdaddr);
|
|
|
|
/* Hci_Cmd_ST_Store_In_NVDS */
|
|
len = do_command(dd, 0xff, 0x0022, cmd, 8, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
/* HCI_Reset : applies parameters*/
|
|
len = do_command(dd, 0x03, 0x0003, NULL, 0, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int bgb2xx_init(int dd, bdaddr_t *bdaddr)
|
|
{
|
|
unsigned char cmd[16];
|
|
unsigned char buf[254];
|
|
int len;
|
|
|
|
len = do_command(dd, 0xff, 0x000f, NULL, 0, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
printf("%s\n", buf);
|
|
|
|
cmd[0] = 0xfe;
|
|
cmd[1] = 0x06;
|
|
bacpy((bdaddr_t *) (cmd + 2), bdaddr);
|
|
|
|
len = do_command(dd, 0xff, 0x0022, cmd, 8, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
len = do_command(dd, 0x03, 0x0003, NULL, 0, buf, sizeof(buf));
|
|
if (len < 0)
|
|
return -1;
|
|
|
|
return 0;
|
|
}
|