| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- // 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;
- }
|