1 /* 2 * Copyright (c) 2014 The DragonFly Project. All rights reserved. 3 * 4 * This code is derived from software contributed to The DragonFly Project 5 * by Matthew Dillon <dillon@backplane.com> and was subsequently ported 6 * to FreeBSD by Michael Gmelin <freebsd@grem.de> 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in 16 * the documentation and/or other materials provided with the 17 * distribution. 18 * 3. Neither the name of The DragonFly Project nor the names of its 19 * contributors may be used to endorse or promote products derived 20 * from this software without specific, prior written permission. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 26 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 27 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, 28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 30 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 32 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33 * SUCH DAMAGE. 34 * 35 * $FreeBSD$ 36 */ 37 38 #ifndef _BUS_SMBUS_INTELGEN4_IG4_VAR_H_ 39 #define _BUS_SMBUS_INTELGEN4_IG4_VAR_H_ 40 41 #include "bus_if.h" 42 #include "device_if.h" 43 #include "pci_if.h" 44 #include "smbus_if.h" 45 #include "iicbus_if.h" 46 47 #define IG4_RBUFSIZE 128 48 #define IG4_RBUFMASK (IG4_RBUFSIZE - 1) 49 50 enum ig4_op { IG4_IDLE, IG4_READ, IG4_WRITE }; 51 52 struct ig4iic_softc { 53 device_t dev; 54 struct intr_config_hook enum_hook; 55 device_t iicbus; 56 struct resource *regs_res; 57 int regs_rid; 58 struct resource *intr_res; 59 int intr_rid; 60 void *intr_handle; 61 int intr_type; 62 enum ig4_op op; 63 int cmd; 64 int rnext; 65 int rpos; 66 char rbuf[IG4_RBUFSIZE]; 67 int error; 68 uint8_t last_slave; 69 int pci_attached : 1; 70 int use_10bit : 1; 71 int slave_valid : 1; 72 int read_started : 1; 73 int write_started : 1; 74 75 /* 76 * Locking semantics: 77 * 78 * Functions implementing the smbus interface that interact 79 * with the controller acquire an exclusive lock on call_lock 80 * to prevent interleaving of calls to the interface and a lock on 81 * io_lock right afterwards, to synchronize controller I/O activity. 82 * 83 * The interrupt handler can only read data while no ig4iic_smb_* call 84 * is in progress or while io_lock is dropped during mtx_sleep in 85 * wait_status and set_controller. It is safe to drop io_lock in those 86 * places, because the interrupt handler only accesses those registers: 87 * 88 * - IG4_REG_I2C_STA (I2C Status) 89 * - IG4_REG_DATA_CMD (Data Buffer and Command) 90 * - IG4_REG_CLR_INTR (Clear Interrupt) 91 * 92 * Locking outside of those places is required to make the content 93 * of rpos/rnext predictable (e.g. whenever data_read is called and in 94 * smb_transaction). 95 */ 96 struct sx call_lock; 97 struct mtx io_lock; 98 }; 99 100 typedef struct ig4iic_softc ig4iic_softc_t; 101 102 /* Attach/Detach called from ig4iic_pci_*() */ 103 int ig4iic_attach(ig4iic_softc_t *sc); 104 int ig4iic_detach(ig4iic_softc_t *sc); 105 106 /* SMBus methods */ 107 extern smbus_callback_t ig4iic_smb_callback; 108 extern smbus_quick_t ig4iic_smb_quick; 109 extern smbus_sendb_t ig4iic_smb_sendb; 110 extern smbus_recvb_t ig4iic_smb_recvb; 111 extern smbus_writeb_t ig4iic_smb_writeb; 112 extern smbus_writew_t ig4iic_smb_writew; 113 extern smbus_readb_t ig4iic_smb_readb; 114 extern smbus_readw_t ig4iic_smb_readw; 115 extern smbus_pcall_t ig4iic_smb_pcall; 116 extern smbus_bwrite_t ig4iic_smb_bwrite; 117 extern smbus_bread_t ig4iic_smb_bread; 118 extern smbus_trans_t ig4iic_smb_trans; 119 extern iicbus_transfer_t ig4iic_transfer; 120 extern iicbus_reset_t ig4iic_reset; 121 122 #endif 123