]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
atomisp: remove HIVECC
authorAlan Cox <alan@linux.intel.com>
Fri, 10 Mar 2017 11:33:59 +0000 (11:33 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 12 Mar 2017 13:48:20 +0000 (14:48 +0100)
We are only going to be building for Linux with gcc, so we can lose bits of
material related to other build targets.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/dma_global.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/assert_support.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/error_support.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/storage_class.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/type_support.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_device_access.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/modes/interface/isp_const.h
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/src/ia_css_debug.c
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_internal.h

index dff611014ba472d2d48fbf7452ba1c0f1737ab37..60d6de1332cd6fe563db7dfb66a6ebfd934fa5a7 100644 (file)
@@ -93,38 +93,6 @@ typedef enum {
    DMA_PACK_WIDTH_B(width_b) | \
    DMA_PACK_HEIGHT(height))
 
-#ifdef __HIVECC
-#define hive_dma_move_data(dma_id, read, channel, addr_a, addr_b, to_is_var, from_is_var) \
-{ \
-  /*hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(read?_DMA_V2_MOVE_B2A_COMMAND:_DMA_V2_MOVE_A2B_COMMAND, channel)); \
-  hive_dma_snd(dma_id, read?(unsigned)(addr_b):(unsigned)(addr_a)); \
-  hive_dma_snd(dma_id, read?(unsigned)(addr_a):(unsigned)(addr_b)); */\
-  if (read) { \
-    hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(_DMA_V2_MOVE_B2A_COMMAND, channel)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_b)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_a)); \
-  } else { \
-    hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(_DMA_V2_MOVE_A2B_COMMAND, channel)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_a)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_b)); \
-  } \
-}
-#define hive_dma_move_data_no_ack(dma_id, read, channel, addr_a, addr_b, to_is_var, from_is_var) \
-{ \
-  /*hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(read?_DMA_V2_NO_ACK_MOVE_B2A_NO_SYNC_CHK_COMMAND:_DMA_V2_NO_ACK_MOVE_A2B_NO_SYNC_CHK_COMMAND, channel)); \
-  hive_dma_snd(dma_id, read?(unsigned)(addr_b):(unsigned)(addr_a)); \
-  hive_dma_snd(dma_id, read?(unsigned)(addr_a):(unsigned)(addr_b)); */\
-  if (read) { \
-    hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(_DMA_V2_NO_ACK_MOVE_B2A_NO_SYNC_CHK_COMMAND, channel)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_b)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_a)); \
-  } else { \
-    hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(_DMA_V2_NO_ACK_MOVE_A2B_NO_SYNC_CHK_COMMAND, channel)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_a)); \
-    hive_dma_snd(dma_id, (unsigned)(addr_b)); \
-  } \
-}
-#else
 #define hive_dma_move_data(dma_id, read, channel, addr_a, addr_b, to_is_var, from_is_var) \
 { \
   hive_dma_snd(dma_id, DMA_PACK(_DMA_V2_SET_CRUN_COMMAND, CMD)); \
@@ -143,7 +111,6 @@ typedef enum {
   hive_dma_snd(dma_id, to_is_var); \
   hive_dma_snd(dma_id, from_is_var); \
 }
-#endif
 
 #define hive_dma_move_b2a_data(dma_id, channel, to_addr, from_addr, to_is_var, from_is_var) \
 { \
@@ -155,14 +122,6 @@ typedef enum {
   hive_dma_move_data(dma_id, false, channel, from_addr, to_addr, from_is_var, to_is_var) \
 }
 
-#ifdef __HIVECC
-#define hive_dma_set_data(dma_id, channel, address, value, is_var) \
-{ \
-  hive_dma_snd(dma_id, _DMA_V2_PACK_CHANNEL_CMD(_DMA_V2_INIT_A_COMMAND, channel)); \
-  hive_dma_snd(dma_id, value); \
-  hive_dma_snd(dma_id, address); \
-}
-#else
 #define hive_dma_set_data(dma_id, channel, address, value, is_var) \
 { \
   hive_dma_snd(dma_id, DMA_PACK(_DMA_V2_SET_CRUN_COMMAND, CMD)); \
@@ -171,7 +130,6 @@ typedef enum {
   hive_dma_snd(dma_id, address); \
   hive_dma_snd(dma_id, is_var); \
 }
-#endif
 
 #define hive_dma_clear_data(dma_id, channel, address, is_var) hive_dma_set_data(dma_id, channel, address, 0, is_var)
 
@@ -190,15 +148,6 @@ typedef enum {
   hive_dma_snd(dma_id, height); \
 }
 
-#ifdef __HIVECC
-/* If the command is "set" the 5th argument holds the value */
-#define hive_dma_execute(dma_id, channel, cmd, to_addr, from_addr_value, to_is_var, from_is_var) \
-{ \
-  hive_dma_snd(dma_id, DMA_PACK_CMD_CHANNEL(cmd, channel)); \
-  hive_dma_snd(dma_id, to_addr); \
-  hive_dma_snd(dma_id, from_addr_value); \
-}
-#else
 #define hive_dma_execute(dma_id, channel, cmd, to_addr, from_addr_value, to_is_var, from_is_var) \
 { \
   hive_dma_snd(dma_id, DMA_PACK(_DMA_V2_SET_CRUN_COMMAND, CMD)); \
@@ -210,7 +159,6 @@ typedef enum {
        hive_dma_snd(dma_id, from_is_var); \
   } \
 }
-#endif
 
 #define hive_dma_configure_fast(dma_id, channel, connection, extension, elems_A, elems_B) \
 { \
index 4d68405343b674e5e90d22576a000f5cdc6c2ea3..b763e1f0b19356a58d1b3fe5ebeb12bde16fe838 100644 (file)
 #include <assert.h>
 #endif
 
-#elif defined(__HIVECC)
-
-/* enable assert for unsched, disable assert for sched and target */
-#if defined(HRT_UNSCHED)
-#define assert(cnd) OP___csim_assert(cnd)
-#else
-#define assert(cnd) ((void)0)
-#endif
-
 #elif defined(__KERNEL__)
 #include <linux/bug.h>
 
index 46af7ec684077cb4567f101322f7980072ede7b9..6e5e5dd4107d448ffb87281c54103f3949be4ffe 100644 (file)
 #define ENOBUFS 233
 
 
-#elif defined(__HIVECC)
-#include <errno.h>
-/*
- * Put here everything __HIVECC specific not covered in
- * "errno.h"
- */
-
 #elif defined(__KERNEL__)
 #include <linux/errno.h>
 /*
index 3812c801a662ccab950c7c55a361431e7ca476cb..3908e668dacd5c279bc9cc86a576372bed20567d 100644 (file)
@@ -24,8 +24,6 @@
 
 #if defined(_MSC_VER)
 #define STORAGE_CLASS_INLINE static __inline
-#elif defined(__HIVECC)
-#define STORAGE_CLASS_INLINE static inline
 #else
 #define STORAGE_CLASS_INLINE static inline
 #endif
index 1f991bbe5d71d15b1c6bbf735ad5d7e3fc1a542b..b82fa3eba79ffa61f72e11cde64f37d5f9ce1706 100644 (file)
 #define HOST_ADDRESS(x) (unsigned long)(x)
 #endif
 
-#elif defined(__HIVECC)
-#ifndef PIPE_GENERATION
-#include <hive/cell_support.h> /* for HAVE_STDINT */
-#endif
-#define __INDIRECT_STDINT_INCLUDE
-#include <stdint/stdint.h>
-#include <stdbool.h>
-#include <stddef.h>
-#include <limits.h>
-#define HOST_ADDRESS(x) (unsigned long)(x)
-
 #elif defined(__KERNEL__)
 
 #define CHAR_BIT (8)
index 8e4518008eaae15b629bc12724460b8e1fb1677a..59459f7a9876ea6b7ad1f357891c0456ca72ea88 100644 (file)
@@ -35,11 +35,8 @@ ia_css_device_load_uint16(const hrt_address addr);
 uint32_t
 ia_css_device_load_uint32(const hrt_address addr);
 
-/* 64 bit types not supported by hivecc */
-#ifndef __HIVECC
 uint64_t
 ia_css_device_load_uint64(const hrt_address addr);
-#endif
 
 void
 ia_css_device_store_uint8(const hrt_address addr, const uint8_t data);
@@ -50,11 +47,8 @@ ia_css_device_store_uint16(const hrt_address addr, const uint16_t data);
 void
 ia_css_device_store_uint32(const hrt_address addr, const uint32_t data);
 
-/* 64 bit types not supported by hivecc */
-#ifndef __HIVECC
 void
 ia_css_device_store_uint64(const hrt_address addr, const uint64_t data);
-#endif
 
 void
 ia_css_device_load(const hrt_address addr, void *data, const size_t size);
index b3f5b781bed9f93e458bf01845ea22ef56b044ce..005eaaa9eb6ce5daf1d02ebe3ef2fa0da4e42c67 100644 (file)
@@ -35,21 +35,13 @@ more details.
 
 /* Binary independent constants */
 
-#ifdef MODE
-//#error __FILE__ "is mode independent"
-#endif
-
 #ifndef NO_HOIST
 #  define              NO_HOIST        HIVE_ATTRIBUTE (( no_hoist ))
 #endif
 
 #define NO_HOIST_CSE HIVE_ATTRIBUTE ((no_hoist, no_cse))
 
-#ifdef __HIVECC
-#define UNION union
-#else
 #define UNION struct /* Union constructors not allowed in C++ */
-#endif
 
 /* ISP binary identifiers.
    These determine the order in which the binaries are looked up, do not change
index 25194eb90a7c6cc3db38d8cac1b2f2c9550a05b7..bb89c310780bda359bbac00b73ab26500b84d221 100644 (file)
@@ -255,7 +255,7 @@ void ia_css_debug_dump_sp_stack_info(void)
 void ia_css_debug_dump_sp_stack_info(void)
 {
 }
-#endif /* #if __HIVECC */
+#endif /* #if !C_RUN && !HRT_UNSCHED */
 
 
 void ia_css_debug_set_dtrace_level(const unsigned int trace_level)
index 6dbe77caea9a23ee0a629cbf04c32cecf6ed128a..a70a72a34507ef69508ad848ace1139b2ea86e48 100644 (file)
@@ -976,7 +976,6 @@ struct host_sp_queues {
 
 extern int (*sh_css_printf)(const char *fmt, va_list args);
 
-#ifndef __HIVECC
 STORAGE_CLASS_INLINE void
 sh_css_print(const char *fmt, ...)
 {
@@ -995,7 +994,6 @@ sh_css_vprint(const char *fmt, va_list args)
        if (sh_css_printf)
                sh_css_printf(fmt, args);
 }
-#endif
 
 /* The following #if is there because this header file is also included
    by SP and ISP code but they do not need this data and HIVECC has alignment