]> git.sur5r.net Git - u-boot/blobdiff - drivers/spi/sh_spi.h
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / drivers / spi / sh_spi.h
index b1cf98cc335186029d8cf0148abfcbe5f4e9c365..33a4630c8daf6a0c479d1d97256e1af36526dbee 100644 (file)
@@ -1,21 +1,8 @@
+/* SPDX-License-Identifier: GPL-2.0 */
 /*
  * SH SPI driver
  *
  * Copyright (C) 2011 Renesas Solutions Corp.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
- *
  */
 
 #ifndef __SH_SPI_H__
@@ -60,10 +47,12 @@ struct sh_spi_regs {
 #define SH_SPI_TBFI    0x40
 #define SH_SPI_RBEI    0x20
 #define SH_SPI_RBFI    0x10
+#define SH_SPI_SSS1    0x08
 #define SH_SPI_WPABRT  0x04
-#define SH_SPI_SSS     0x01
+#define SH_SPI_SSS0    0x01
 
 #define SH_SPI_FIFO_SIZE       32
+#define SH_SPI_NUM_CS          4
 
 struct sh_spi {
        struct spi_slave        slave;
@@ -76,4 +65,3 @@ static inline struct sh_spi *to_sh_spi(struct spi_slave *slave)
 }
 
 #endif
-