| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /*
- * Copyright (c) 2023 joshua stein <jcs@jcs.org>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- #ifndef NETWORK_H
- #define NETWORK_H
- #ifdef BLUESCSI_NETWORK
- #include <sys/types.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define SCSI_NETWORK_WIFI_CMD 0x1c // cdb opcode
- #define SCSI_NETWORK_WIFI_CMD_SCAN 0x01 // cdb[2]
- #define SCSI_NETWORK_WIFI_CMD_COMPLETE 0x02
- #define SCSI_NETWORK_WIFI_CMD_SCAN_RESULTS 0x03
- #define SCSI_NETWORK_WIFI_CMD_INFO 0x04
- #define SCSI_NETWORK_WIFI_CMD_JOIN 0x05
- // Patches to make the DaynaPORT (or whats left of it) work on the Amiga - RobSmithDev
- #define SCSI_NETWORK_WIFI_CMD_ALTREAD 0x08 // gvpscsi.device on AMIGA doesnt like the standard version
- #define SCSI_NETWORK_WIFI_CMD_GETMACADDRESS 0x09 // gvpscsi.device on AMIGA doesnt like the standard version
- #define AMIGASCSI_PATCH_24BYTE_BLOCKSIZE 0xA8 // In this mode, data written is rounded up to the nearest 24-byte boundary
- #define AMIGASCSI_PATCH_SINGLEWRITE_ONLY 0xA9 // In this mode, data written is always ONLY as one single write command
- #ifndef NETWORK_PACKET_QUEUE_SIZE
- # define NETWORK_PACKET_QUEUE_SIZE 20 // must be <= 255
- #endif
- #define NETWORK_PACKET_MAX_SIZE 1520
- struct __attribute__((packed)) wifi_network_entry {
- char ssid[64];
- char bssid[6];
- int8_t rssi;
- uint8_t channel;
- uint8_t flags;
- #define WIFI_NETWORK_FLAG_AUTH 0x1
- uint8_t _padding;
- };
- #define WIFI_NETWORK_LIST_ENTRY_COUNT 10
- extern struct wifi_network_entry wifi_network_list[WIFI_NETWORK_LIST_ENTRY_COUNT];
- struct __attribute__((packed)) wifi_join_request {
- char ssid[64];
- char key[64];
- uint8_t channel;
- uint8_t _padding;
- };
- int scsiNetworkCommand(void);
- int scsiNetworkEnqueue(const uint8_t *buf, size_t len);
- int scsiNetworkPurge(void);
- #ifdef __cplusplus
- }
- #endif
- #endif // BLUESCSI_NETWORK
- #endif // NETWORK_H
|